You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
391 B
HTML

{{ define "main" }}
<div class="container">
<h1> {{ .Title }} </h1>
{{ range (.Paginate .RegularPagesRecursive).Pages }}
<a href="{{ .Permalink }}"> {{ .PublishDate.Format "January 2, 2006" }} | {{ .Title }}</a>
<br>
<code>//</code> {{ .Description }}
<br>
<br>
{{ end }}
</div>
{{- partial "pagination.html" . -}}
{{ end }}