still under construction

This commit is contained in:
2021-08-20 23:40:43 +09:00
parent 2ee272598a
commit 14af7dfe4e
37 changed files with 185 additions and 349 deletions

View File

@@ -1,7 +1,7 @@
<!doctype html>
<html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>{{status}} - {{message}}</title>
<title th:text="|${status} - ${message}|">{{status}} - {{message}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
@@ -16,13 +16,13 @@
<body>
<p class="inline">
<span class="green">www-user@elex-project.com</span><span>:</span>
<span class="blue">{{path}}</span><span>$&nbsp;</span><span>http get {{path}}</span>
<span class="blue" th:text="${path}">{{path}}</span><span>$&nbsp;</span><span th:text="|http get ${path}|">http get {{path}}</span>
</p>
<p>{{status}} - {{message}}</p>
<p>Trace:<br /> {{trace}}</p>
<p th:text="|${status} - ${message}|">{{status}} - {{message}}</p>
<p th:utext="|Trace:<br/> ${trace}|">Trace:<br /> {{trace}}</p>
<p class="inline">
<span class="green">www-user@elex-project.com</span><span>:</span>
<span class="blue">{{path}}</span><span>$&nbsp;</span><input type="text"/>
<span class="blue" th:text="${path}">{{path}}</span><span>$&nbsp;</span><input type="text"/>
</p>
</body>
</html>