layouts/posts/list.html
d43c0849
 {{ define "title" }}
   {{ title (i18n (lower .Title)) | default .Title }} · {{ .Site.Title }}
 {{ end }}
 {{ define "content" }}
   <section class="container list">
     <h1 class="title">
       <a class="title-link" href="{{ .Permalink | safeURL }}">
         {{ title (i18n (lower .Title)) | default .Title }}
       </a>
     </h1>
 
     <div class="tags centered">
       {{- range $index, $el := .Site.Params.linkedTags -}}
         {{ if gt $index 0 }}
           <span class="separator"> • </span>
         {{ end }}
         <a href="{{ ( printf "tags/%s/" ( . | urlize ) ) | relLangURL }}"><b>{{ . }}</b></a>
       {{- end -}}
     </div>
 
     <ul>
       {{- range .Paginator.Pages -}}
         {{- .Render "li" -}}
       {{- end -}}
     </ul>
 
     {{ partial "pagination.html" . }}
   </section>
 {{ end }}