Web/layouts/_default/list.html

14 lines
355 B
HTML
Raw Permalink Normal View History

2024-02-21 17:58:07 +01:00
{{ define "main" }}
{{ .Content }}
<div class="row center-xs middle-xs">
{{ range .Pages }}
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
<p><strong>{{ .Title }}</strong></p>
<p>{{ .Description }}</p>
2024-03-25 23:05:37 +01:00
<p>📅: {{ partial "time.html" . }}</p>
<a class="button" href="{{ .Permalink }}">Info</a>
2024-02-21 17:58:07 +01:00
</div>
</div>
{{ end }}
{{ end }}