33 lines
920 B
HTML
33 lines
920 B
HTML
<!DOCTYPE html>
|
|
<html lang="de" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title>Flexinale Distributed - Besucherportal</title>
|
|
<link href="icons/movies.png" rel="icon">
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
|
|
<link href="../static/css/vendor/picnic.min.css"
|
|
media="screen" rel="stylesheet" th:href="@{css/vendor/picnic.min.css}"/>
|
|
<link href="../static/css/app/main.css"
|
|
media="screen" rel="stylesheet" th:href="@{css/app/main.css}"/>
|
|
</head>
|
|
<body>
|
|
|
|
<div th:replace="~{header}"/>
|
|
|
|
<div class="FLEXmain">
|
|
<table>
|
|
<td>Flexinale</td>
|
|
<td><img height="125%" src="icons/movies.png" width="125%"></td>
|
|
</table>
|
|
</div>
|
|
|
|
<hr>
|
|
<div class="FLEXfooter">
|
|
<th:block th:text="${applicationTitle}"/>
|
|
, Version
|
|
<th:block th:text="${buildVersion}"/>
|
|
, built on
|
|
<th:block th:text="${buildDate}"/>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|