sgregoratto.me

Hugo files for www.sgregoratto.me
git clone git://git.sgregoratto.me/sgregoratto.me
Log | Files | Refs

list.html (331B)


      1 {{ partial "header.html" . }}
      2 <header>
      3 	<h1 class="title">{{.Title}}</h1>
      4 </header>
      5 <table>
      6 	{{ range .Pages.ByPublishDate.Reverse }}
      7 	<tr>
      8 		<td><a href="{{ .Permalink }}">{{ .Title }}</a></td>
      9 		<td style="text-align:right"><time>{{.Date.Format "2006-01-02"}}</time></td>
     10 	</tr>
     11 	{{ end }}
     12 </table>
     13 {{ partial "footer.html" . }}