16 lines
343 B
HTML
16 lines
343 B
HTML
{{ define "title" }}
|
|
{{ .Title }} · {{ .Site.Title }}
|
|
{{ end }}
|
|
{{ define "content" }}
|
|
<section class="container list">
|
|
<h1 class="title">{{ .Site.Params.Posts }}</h1>
|
|
|
|
<ul>
|
|
{{- range .Paginator.Pages -}}
|
|
{{- .Render "li" -}}
|
|
{{- end -}}
|
|
</ul>
|
|
|
|
{{ partial "pagination.html" . }}
|
|
</section>
|
|
{{ end }}
|