site

personal website, served at mordaunt.dev/site
Log | Files | Refs

list.html (710B)


      1 <section class="container list">
      2   <header>
      3     <h1 class="title">
      4       <a class="title-link" href="{{ .Permalink | safeURL }}">
      5         {{- if eq .Kind "term" -}}
      6           {{- i18n .Data.Plural 1 | title -}}
      7           {{- print ": " -}}
      8         {{- end -}}
      9         {{- i18n (lower .Title) | default .Title | title -}}
     10       </a>
     11     </h1>
     12   </header>
     13   {{ .Content }}
     14   <ul>
     15     {{ range .Paginator.Pages }}
     16     <li>
     17       <span class="date">{{ .Date | time.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
     18       <a class="title" href="{{ .Params.externalLink | default .RelPermalink }}">{{ .Title }}</a>
     19     </li>
     20     {{ end }}
     21   </ul>
     22   {{ partial "pagination.html" . }}
     23 </section>