2019-07-08 07:05:23 +02:00
|
|
|
{{ define "main" }}
|
2019-07-31 18:43:51 +02:00
|
|
|
<main id="main" class="container">
|
|
|
|
<header class="post-header">
|
2019-07-08 07:05:23 +02:00
|
|
|
<h1 id="title">{{ .Title }}</h1>
|
2019-08-25 08:58:26 +02:00
|
|
|
{{- partial "post-info.html" . -}}
|
2019-07-08 07:05:23 +02:00
|
|
|
</header>
|
|
|
|
<article id="content">
|
|
|
|
{{ .Content }}
|
|
|
|
</article>
|
2019-07-31 18:43:51 +02:00
|
|
|
</main>
|
2019-07-08 07:05:23 +02:00
|
|
|
{{ end }}
|
|
|
|
|