blog/themes/shockrah.xyz/layouts/partials/posts.html
shockrah dea636c3ae + Adding proper index page building
+ 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
2021-08-16 16:12:14 -07:00

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 }}