blob: 28903bab68be708df4b684a61040948a3dff1e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{title} — Benki Wiki</title>
<link rel="stylesheet" type="text/css" href="/common.css" />
</head>
<body>
<article id="wiki-page">
<header>
<h1>{title}</h1>
<div class="">
Last edit: <time datetime="{date.htmlFormat}">{date.humanFormat}</time> by {author.name}
</div>
</header>
<main>
{content.raw}
</main>
<hr>
<footer>
<a href="/wiki/{title}/revisions">Page revisions</a>
</footer>
</article>
</body>
</html>
|