blob: ca1180dcbac8007b2556cee9bcae0a0b1b731f76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ define "main" }}
<article class="{{ partial "post-class.html" . }}" role="document" id="page-{{ .File.TranslationBaseName | lower }}"{{ with .Params.lang}} lang="{{ . }}"{{ end }}>
<header>
<h1 class="page-title">
{{ .Params.caption | default .Title }}
</h1>
</header>
<div class="page-body">
{{ .Content }}
</div>
</article>
{{ end }}
|