12 lines
290 B
HTML
12 lines
290 B
HTML
|
{{ define "main" }}
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ .Content }}
|
||
|
<article>
|
||
|
{{ range .Paginator.Pages }}
|
||
|
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
||
|
{{ partial "list-post.html" . }}
|
||
|
{{ end }}
|
||
|
</article>
|
||
|
{{ template "_internal/pagination.html" . }}
|
||
|
{{ end }}
|