|
5 | 5 | xmlns:sec="http://www.thymeleaf.org/extras/spring-security" |
6 | 6 | xmlns:sd="http://www.thymeleaf.org/spring-data"> |
7 | 7 | <head th:replace="layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)"> |
8 | | - <title th:text="'SimpleWorklist | ' + #{pages.information.h1}">Information</title> |
| 8 | + <title th:text="'SimpleWorklist | ' + #{pages.information.h1}">Information</title> |
9 | 9 | </head> |
10 | 10 | <body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})"> |
11 | 11 |
|
12 | 12 | <div th:fragment="mytwtitle"> |
13 | | - <div id="tw-content-title"> |
14 | | - <div class="row my-5 py-5"> |
15 | | - <h1 class="col-md-12 mb-12"> |
16 | | - <span th:utext="#{pages.information.h1}">Information</span> |
17 | | - </h1> |
18 | | - <h2>© 2022 Thomas Wöhlke</h2> |
| 13 | + <div id="tw-content-title"> |
| 14 | + <div class="row my-5 py-5"> |
| 15 | + <h1 class="col-md-12 mb-12"> |
| 16 | + <span th:utext="#{pages.information.h1}">Information</span> |
| 17 | + </h1> |
| 18 | + <h2>© 2022 Thomas Wöhlke</h2> |
| 19 | + </div> |
19 | 20 | </div> |
20 | | - </div> |
21 | 21 | </div> |
22 | 22 |
|
23 | 23 | <div th:fragment="mytwcontent"> |
24 | 24 |
|
25 | | - <div class="card" id="user-login-form-more-information"> |
26 | | - <div class="card-body"> |
27 | | - <h5 class="card-title" th:text="#{user.loginForm.moreInformation}">For More Information please visit:</h5> |
28 | | - <ul> |
29 | | - <li> |
30 | | - <span th:utext="#{user.loginForm.github}">Github:</span> |
31 | | - <a href="https://github.com/Spring-Framework-Java-Apps/simpleworklist/" target="_blank"> |
32 | | - https://github.com/Spring-Framework-Java-Apps/simpleworklist/ |
33 | | - </a> |
34 | | - </li> |
35 | | - <li> |
36 | | - <span th:utext="#{user.loginForm.myBlog}">My Blog:</span> |
37 | | - <a href="http://thomas-woehlke.blogspot.de/" target="_blank">http://thomas-woehlke.blogspot.de/</a> |
38 | | - </li> |
39 | | - <li> |
40 | | - <span th:utext="#{user.loginForm.projectPage}">The Project Page:</span> |
41 | | - <a href="http://woehlke.org/p/simpleworklist/" target="_blank">http://woehlke.org/p/simpleworklist/</a> |
42 | | - </li> |
43 | | - <li>Getting Things Done® @ Wikipedia: |
44 | | - <a href="https://de.wikipedia.org/wiki/Getting_Things_Done" target="_blank" th:if="${locale == 'de'}"> |
45 | | - https://de.wikipedia.org/wiki/Getting_Things_Done |
46 | | - </a> |
47 | | - <a href="https://en.wikipedia.org/wiki/Getting_Things_Done" target="_blank" th:if="${locale != 'de'}"> |
48 | | - https://en.wikipedia.org/wiki/Getting_Things_Done |
49 | | - </a> |
50 | | - </li> |
51 | | - </ul> |
52 | | - <p class="card-text" th:utext="#{user.loginForm.gtd.copyright}"> |
53 | | - GTD® and Getting Things Done® are registered trademarks of the David Allen Company. |
54 | | - SimpleWorklist is not affiliated with or endorsed by the David Allen Company. |
55 | | - </p> |
| 25 | + <div class="card" id="user-login-form-more-information"> |
| 26 | + <div class="card-body"> |
| 27 | + <h5 class="card-title" th:text="#{user.loginForm.moreInformation}">For More Information please visit:</h5> |
| 28 | + <ul> |
| 29 | + <li> |
| 30 | + <span th:utext="#{user.loginForm.github}">Github:</span> |
| 31 | + <a href="https://github.com/Spring-Framework-Java-Apps/simpleworklist/" target="_blank"> |
| 32 | + https://github.com/Spring-Framework-Java-Apps/simpleworklist/ |
| 33 | + </a> |
| 34 | + </li> |
| 35 | + <li> |
| 36 | + <span th:utext="#{user.loginForm.projectPage}">The Maven Project Page:</span> |
| 37 | + <a href="https://java.woehlke.org/simpleworklist/" target="_blank"> |
| 38 | + https://java.woehlke.org/simpleworklist/ |
| 39 | + </a> |
| 40 | + </li> |
| 41 | + <li> |
| 42 | + <span th:utext="#{user.loginForm.myBlog}">My Blog:</span> |
| 43 | + <a href="https://thomas-woehlke.blogspot.de/" target="_blank"> |
| 44 | + https://thomas-woehlke.blogspot.de/ |
| 45 | + </a> |
| 46 | + </li> |
| 47 | + <li>Getting Things Done® @ Wikipedia: |
| 48 | + <a href="https://de.wikipedia.org/wiki/Getting_Things_Done" |
| 49 | + target="_blank" th:if="${locale == 'de'}"> |
| 50 | + https://de.wikipedia.org/wiki/Getting_Things_Done |
| 51 | + </a> |
| 52 | + <a href="https://en.wikipedia.org/wiki/Getting_Things_Done" |
| 53 | + target="_blank" th:if="${locale != 'de'}"> |
| 54 | + https://en.wikipedia.org/wiki/Getting_Things_Done |
| 55 | + </a> |
| 56 | + </li> |
| 57 | + </ul> |
| 58 | + <p class="card-text" th:utext="#{user.loginForm.gtd.copyright}"> |
| 59 | + GTD® and Getting Things Done® are registered trademarks of the David Allen Company. |
| 60 | + SimpleWorklist is not affiliated with or endorsed by the David Allen Company. |
| 61 | + </p> |
| 62 | + </div> |
56 | 63 | </div> |
57 | | - </div> |
58 | 64 | </div> |
59 | 65 |
|
60 | 66 | </body> |
|
0 commit comments