summaryrefslogtreecommitdiff
path: root/src/main/resources/templates
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-01-24 19:11:24 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-01-24 19:11:24 +0100
commit9222efa007b8790852dc761d09367863bf56ddf3 (patch)
tree078e101d53aa8a87e06013157ddb049a48b40e7d /src/main/resources/templates
parent57c9a8aa7845f27cee62c423c7128b46d256fc40 (diff)
Start implementing /wiki/{pageName}.
Change-Id: Ia9adf24209be8eddcfec72a66434ea4100855533
Diffstat (limited to 'src/main/resources/templates')
-rw-r--r--src/main/resources/templates/benki/wiki/wikiPage.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/resources/templates/benki/wiki/wikiPage.html b/src/main/resources/templates/benki/wiki/wikiPage.html
index 9b3af5d..caf587a 100644
--- a/src/main/resources/templates/benki/wiki/wikiPage.html
+++ b/src/main/resources/templates/benki/wiki/wikiPage.html
@@ -6,5 +6,15 @@
</head>
<body>
<h1>{title}</h1>
+
+ <header>
+ Last edit: <time datetime="{date.htmlFormat}">{date.humanFormat}</time> {author.name}
+ </header>
+
+ <main>
+ <article>
+ {content.raw}
+ </article>
+ </main>
</body>
</html>