Files
hugo-coder-timeline/layouts/posts/list.html
Latiif alSharif e57d44345c Allow internationalization for 'Posts' (#337)
* Allow internationalization for 'Posts'

* Apply internationalization to page title as well.

- I18n files should have an entry for the original title in lowercase.
2020-05-20 15:55:52 -03:00

16 lines
392 B
HTML

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