dea636c3ae
+ Favicon to head section of pages * Fixed date formatting in multiple places + Skeleton for posts which I don't think is being used but I could be wrong
14 lines
305 B
HTML
14 lines
305 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ range .Pages.ByPublishDate.Reverse }}
|
|
<p>
|
|
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
{{ partial "metadata.html" }}
|
|
<a class="summary" href="{{ .RelPermalink }}">
|
|
<p>{{ .Summary }}</p>
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
|