blob: 16138b4b7084d683a03738cfcd6da63cbdfb2d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ define "main" }}
<div>
<article>
{{- .Content -}}
</article>
{{ with .Site.GetPage "post" }}
{{ range .Pages }}
<article>
<p>{{ .Render "summary" }}</p>
</article>
{{ end }}
{{ end }}
</div>
{{ end }}
|