| 12345678910111213141516171819202122232425262728 | {{ partial "header.html" . }}{{ partial "navbar.html" . }}{{ partial "header_image.html" . }}<div class="universal-wrapper">  <h1>{{ .Title | default (i18n "posts") }}</h1>  {{ with .Content }}  <div class="article-style" itemprop="articleBody">{{ . }}</div>  {{ end }}  {{ $paginator := .Paginate .Data.Pages }}  {{ range $paginator.Pages }}    {{ $params := dict "post" . }}    {{ if eq $.Params.list_format 0 }}      {{ partial "post_li_simple" $params }}    {{ else }}      {{ partial "post_li_detailed" $params }}    {{ end }}  {{ end }}  {{ partial "pagination" . }}</div>{{ partial "footer_container.html" . }}{{ partial "footer.html" . }}
 |