You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
550 B
22 lines
550 B
{{ define "title" }}
|
|
{{ title (i18n (lower .Title)) | default .Title }} · {{ .Site.Title }}
|
|
{{ end }}
|
|
{{ define "content" }}
|
|
<section class="container list">
|
|
<header>
|
|
<h1 class="title">
|
|
<a class="title-link" href="{{ .Permalink | safeURL }}">
|
|
{{ title (i18n (lower .Title)) | default .Title }}
|
|
</a>
|
|
</h1>
|
|
</header>
|
|
{{ .Content }}
|
|
<ul>
|
|
{{- range .Paginator.Pages -}}
|
|
{{- .Render "li" -}}
|
|
{{- end -}}
|
|
</ul>
|
|
|
|
{{ partial "pagination.html" . }}
|
|
</section>
|
|
{{ end }}
|
|
|