Skip to content

Commit 275a537

Browse files
committed
migrate spring-bootfrom 2 to 3
1 parent 4a27774 commit 275a537

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/resources/templates/layout/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<footer class="footer">
9191
<nav class="navbar fixed-bottom navbar-dark bg-dark navbar-text">
9292
<div class="container">
93-
<div class="col nav-link"><a th:href="@{/pages/information}" class="nav-link">© 2022 Thomas Wöhlke</a></div>
93+
<div class="col nav-link"><a th:href="@{/pages/information}" class="nav-link">© 2023 Thomas Wöhlke</a></div>
9494
<div class="col nav-link">
9595
<a href="https://twitter.com/ThomasWoehlke" class="nav-link text-center">
9696
<i class="fa-brands fa-twitter"></i> ThomasWoehlke

src/main/resources/templates/pages/information.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<h1 class="col-md-12 mb-12">
1616
<span th:utext="#{pages.information.h1}">Information</span>
1717
</h1>
18-
<h2>© 2022 Thomas Wöhlke</h2>
18+
<h2>© 2023 Thomas Wöhlke</h2>
1919
</div>
2020
</div>
2121
</div>

src/main/resources/templates/user/selfservice/profile.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ <h5>
5858
<span th:text="${user.userFullname}">user.userFullname</span>
5959
</td>
6060
<td>
61-
<span th:text="${#dates.format(user.lastLoginTimestamp,'dd.MM.yyyy HH:mm:ss')}"></span>
61+
<span th:text="${user.lastLoginTimestamp}"></span>
6262
</td>
6363
<td>
64-
<span th:text="${#dates.format(user.rowCreatedAt,'dd.MM.yyyy HH:mm:ss')}"></span>
64+
<span th:text="${user.rowCreatedAt}"></span>
6565
</td>
6666
</tr>
6767
</tbody>

0 commit comments

Comments
 (0)