hugo-geekdoc/layouts/_default/single.html

9 lines
270 B
HTML
Raw Normal View History

2020-01-12 15:33:02 +01:00
{{ define "main" }}
{{ partial "page-header" . }}
<article class="gdoc-markdown gdoc-markdown__align--{{ default "left" (.Page.Params.GeekdocAlign | lower) }}">
2020-01-12 15:33:02 +01:00
<h1>{{ partial "title" . }}</h1>
2020-02-26 23:59:30 +01:00
{{ partial "content" . }}
2020-01-12 15:33:02 +01:00
</article>
{{ end }}