2021-02-12 23:46:08 +00:00
|
|
|
{{ define "main" }}
|
2021-09-26 01:18:37 +00:00
|
|
|
<header class="content__header">
|
|
|
|
<h1>{{ .Title | markdownify }}</h1>
|
2021-02-12 23:46:08 +00:00
|
|
|
</header>
|
2021-09-26 01:18:37 +00:00
|
|
|
<div class="content__body">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
<footer class="content__footer"></footer>
|
2021-02-12 23:46:08 +00:00
|
|
|
{{ end }}
|
2021-09-26 01:18:37 +00:00
|
|
|
|