17 lines
326 B
HTML
17 lines
326 B
HTML
|
{{ partial "header.html" . }}
|
||
|
<body>
|
||
|
<main class="wrapper">
|
||
|
{{ partial "navigation.html" . }}
|
||
|
<section id="site-page" class="container page">
|
||
|
<article>
|
||
|
<header>
|
||
|
<h1 class="site-title">{{ .Title }}</h1>
|
||
|
</header>
|
||
|
{{ .Content }}
|
||
|
</article>
|
||
|
</section>
|
||
|
{{ partial "footer.html" . }}
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|