22 lines
431 B
HTML
22 lines
431 B
HTML
|
{{ partial "header.html" . }}
|
||
|
<body>
|
||
|
<main class="wrapper">
|
||
|
{{ partial "navigation.html" . }}
|
||
|
<section class="container archive">
|
||
|
<article>
|
||
|
<header class="post-header">
|
||
|
<h1 class="post-title">
|
||
|
{{ .Title }}
|
||
|
</h1>
|
||
|
{{ partial "scratch.html" . }}
|
||
|
</header>
|
||
|
<div class="archive-body">
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
{{ partial "article-footer.html" . }}
|
||
|
</article>
|
||
|
</section>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|