Files
hugo-coder-timeline/layouts/posts/list.html
2020-07-26 20:49:35 -03:00

17 lines
427 B
HTML

{{ define "title" }}
{{ title (i18n (lower .Title)) | default .Title }} · {{ .Site.Title }}
{{ end }}
{{ define "content" }}
<section class="container list">
<h1 class="title"> {{ title (i18n (lower .Title)) | default .Title }} </h1>
{{ .Content }}
<ul>
{{- range .Paginator.Pages -}}
{{- .Render "li" -}}
{{- end -}}
</ul>
{{ partial "pagination.html" . }}
</section>
{{ end }}