arche / internal/ui/templates/wikipage.html

commit 154431fd
 1{{ template "base.html" . }} {{ define "title" }}{{.Title}} — Wiki — Arche{{ end }} {{ define "content" }}
 2<h2>{{.Title}}</h2>
 3<div class="info-row">
 4    <div>
 5        Author: <span>{{.Author}}</span>
 6    </div>
 7</div>
 8<div class="wiki-content">{{.Content | markdown}}</div>
 9<p style="margin-top: 20px">
10    <a href="/wiki">← wiki index</a>
11</p>
12{{ end }}