Edit list.html

Linked CSS
Displays full post on list pages (ie. _index.md)
This commit is contained in:
Xavi 2023-02-18 11:27:38 -08:00
parent fd09502b88
commit fa6fac80ca

View File

@ -0,0 +1,17 @@
{{ define "main" }}
<h2 class="tots_heading"> {{ .Title }}</h2>
{{ .Content }}
{{ range.Pages }}
<div class="tots_post">
<h3 class="entry_heading">{{ .Title }}</h3>
<h5 class="tots_date_category"> {{ .Lastmod }}</h5>
{{ .Content }}
</div>
{{ end }}
{{ end }}