blob: c941bc294c556b8f4cd24304f7aca2b95a219a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ define "main" }}
<article class="narrative" role="document"{{ with .Params.lang}} lang="{{ . }}"{{ end }}>
<header>
<h1 class="text-title">
{{ .Params.caption | default .Title }}
</h1>
</header>
<p class="byline">
{{ partial "post-meta/author.html" . }}
</p>
{{ .Content }}
</article>
{{ end }}
|