hugo-geekdoc/layouts/posts/single.html

14 lines
407 B
HTML
Raw Normal View History

2020-01-12 15:33:02 +01:00
{{ define "main" }}
<article class="gdoc-post">
<header class="gdoc-post__header">
<h1 class="gdoc-post__title">{{ .Title }}</h1>
<div class="flex flex-wrap align-center gdoc-post__meta gdoc-post__meta--head">
{{ partial "posts/metadata.html" . }}
2020-06-01 15:59:02 +02:00
</div>
</header>
<section class="gdoc-markdown">
{{ partial "content" . }}
</section>
</article>
2020-01-12 15:33:02 +01:00
{{ end }}