25 lines
553 B
HTML
25 lines
553 B
HTML
{{ define "main" }}
|
|
<!-- <article>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{ range .Pages }}
|
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
</article> -->
|
|
|
|
|
|
{{ range .Pages }}
|
|
<article class="partial">
|
|
<h1><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h1>
|
|
{{ .Summary }}
|
|
<!-- {{ .Content }} -->
|
|
{{ if .Truncated }}
|
|
<a href="{{ .RelPermalink }}">Read more</a>
|
|
{{ end }}
|
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
|
</article>
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|