blob: 95c796df18cd2e7d75aff91d574b408c1d16f180 [file] [log] [blame]
Matthias Andreas Benkard0aac7c52020-01-26 08:05:27 +01001{@eu.mulk.mulkcms2.benki.wiki.WikiPage page}
2{@java.lang.String title}
3
4{#include base.html}
5
6{#title}Revisions — {title} — Benki Wiki{/title}
7
8{#body}
9<header>
Matthias Andreas Benkardc27d1cb2020-01-26 11:11:24 +010010 <h1>Revisions &#8212; <a href="/wiki/{title}">{title}</a></h1>
Matthias Andreas Benkard0aac7c52020-01-26 08:05:27 +010011</header>
12
13<main>
14 <table>
15 <thead>
16 <tr>
17 <th>Date</th>
18 <th>Title</th>
19 <th>Author</th>
20 </tr>
21 </thead>
22
23 <tbody>
24 {#with page}
25 {#for revision in revisions}
26 {#with revision}
27 <tr>{date.humanDateTime}</tr>
28 <tr>{title}</tr>
29 <tr>{author.firstName}</tr>
30 {/with}
31 {/for}
32 {/with}
33 </tbody>
34 </table>
35</main>
36{/body}
37
38{/include}