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