Skip to content

Commit

Permalink
Add missing attributes to pages
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomTannenbaum committed Oct 2, 2024
1 parent 9dec627 commit 39f36f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/templates/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout.html}"
lang="">
lang="de">
<body>
<section layout:fragment="content">
<div th:replace="~{fragments/internal-server-error}"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout.html}"
lang="">
lang="de">
<body>
<section layout:fragment="content">
<span class="display-4">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/layout.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--prettier-ignore-->
<!DOCTYPE html>
<html lang="" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<html lang="de" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head>
<script
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/templates/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
<!DOCTYPE html>
<html
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout.html}">
layout:decorate="~{layout.html}"
lang="de">
<head>
<link rel="stylesheet" th:href="@{styles/search.css}" type="text/css" />
<title>Universität Luzern - Prüfungen</title>
</head>
<body>
<section layout:fragment="content">
Expand Down

0 comments on commit 39f36f4

Please sign in to comment.