hugo-theme-readable

Fork of https://github.com/cjtheham/hugo-theme-readable
git clone https://git.eamoncaddigan.net/hugo-theme-readable.git
Log | Files | Refs | README | LICENSE

list.html (218B)


      1 {{ define "main" }}
      2 <h1>{{ .Title }}</h1>
      3 {{ range .Pages.ByLastmod.Reverse }}
      4 <p>
      5     <h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
      6     {{ partial "metadata.html" . }}
      7 </p>
      8 {{ end }}
      9 {{ end }}