9 lines
343 B
HTML
9 lines
343 B
HTML
{{ define "main" }}
|
|
<h1>Blog</h1>
|
|
<p>Here is a list of my personal ranting from newest to oldest.</p>
|
|
{{ range .Pages.ByPublishDate.Reverse }}
|
|
<p>
|
|
<h3><time datetime="{{ .Date | time.Format "2006-01-02"}}">{{ .Date | time.Format "2006-01-02"}}</time> <a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|