equal
deleted
inserted
replaced
|
1 <!doctype html> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" > |
|
3 <head> |
|
4 <title>Renkan Admin</title> |
|
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|
6 <meta charset="utf-8"/> |
|
7 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> |
|
8 |
|
9 <link rel="shortcut icon" href="favicon.ico"/> |
|
10 |
|
11 <link href="../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/> |
|
12 <link href="../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/> |
|
13 |
|
14 <script th:remove="all" type="text/javascript" src="../../static/lib/jquery.min.js"></script> |
|
15 <script th:remove="all" type="text/javascript" src="../../static/js/thymol.js"></script> |
|
16 </head> |
|
17 <body> |
|
18 <div id="container"> |
|
19 <div id="wrapper"> |
|
20 <h1 th:text="#{renkanAdmin.renkan_admin}">Renkan administration</h1> |
|
21 <h2 th:text="#{renkanAdmin.object_list}">Site administration</h2> |
|
22 <table id="object_list"> |
|
23 <thead> |
|
24 <tr> |
|
25 <th th:text="#{renkanAdmin.object}">Object</th> |
|
26 <th> </th> |
|
27 </tr> |
|
28 </thead> |
|
29 <tbody> |
|
30 <tr> |
|
31 <th th:text="${space.title}">title</th> |
|
32 <th th:text="${space.title}">title</th> |
|
33 </tr> |
|
34 </tbody> |
|
35 </table> |
|
36 </div> |
|
37 <div id="footer" th:include="fragment/pageFragment :: footerFragment"> |
|
38 <div id="version">© <span class="version-date">2013</span> <a href="http://www.iri.centrepompidou.fr" target="_blanck">IRI</a> - Version <span class="version-version">0.0</span></div> |
|
39 </div> |
|
40 </div> |
|
41 </body> |
|
42 </html> |