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