mpercivalxyz

this website!
Log | Files | Refs

list.html (389B)


      1 {{ partial "header.html" . -}}
      2 <header><h1 id="tag_{{ .Title }}">{{ .Title | title }}</h1></header>
      3 <article>
      4 {{ .Content -}}
      5 <div class="main">
      6 <ul>
      7 {{- range.Pages }}
      8 	<li><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
      9 {{ end -}}
     10 </ul>
     11 </div>
     12 </article>
     13 </main>
     14 </body>