temper-tv/main-site/themes/temper/layouts/_default/list.html
shockrah 3fec682c53 Simple feed tmeplate for now
still reqiures tons of styling
2023-09-23 01:44:56 -07:00

16 lines
448 B
HTML

{{ define "main" }}
{{ range .Pages.ByDate.Reverse }}
<div class="card">
<div class="card-header postcard">
<h5 class="card-title">{{ .Title }}</h5>
</div>
<div class="card-body postcard">
<p class="card-text">{{ .Description }}</p>
</div>
<div class="card-footer text-muted postcard">
{{ .Date | time.Format ":date_short" }} {{ .Date | time.Format ":time_long"}}
</div>
</div>
{{ end }}
{{ end }}