You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
725 B

{{define "content"}}
<article class="wiki-page">
<nav class="breadcrumbs" aria-label="Breadcrumb">
<ol>
<li><a href="/">Home</a></li>
<li><a href="/wiki">Wiki</a></li>
<li aria-current="page">{{.Title}}</li>
</ol>
</nav>
<header class="page-header">
<h1>{{.Title}}</h1>
{{if .Summary}}<p class="page-summary">{{.Summary}}</p>{{end}}
</header>
<div class="page-content">
{{.Content}}
</div>
{{if .TableOfContents}}
<aside class="table-of-contents">
<h2>Table of Contents</h2>
{{.TableOfContents}}
</aside>
{{end}}
</article>
{{end}}
{{/* Feed is defined in components.html */}}