itsdrike.com/layouts/_default/list.html

23 lines
672 B
HTML
Raw Normal View History

2021-08-24 20:06:02 +02:00
{{ define "main" }}
2022-05-11 14:04:08 +02:00
<div id="main">
<div class="container">
2022-05-11 14:04:08 +02:00
{{ partial "content.html" . }}
{{ if .Content }}
2021-08-26 03:02:16 +02:00
<hr>
2022-05-11 14:04:08 +02:00
{{ end }}
<div class="item-list">
<div class="item-list-group">
<ul class="item-list-items">
{{ range .Pages.ByTitle }}
<li class="item-list-item" data-id="{{ with .File}}{{ .File.UniqueID }}{{ end }}">
{{ partial "list_item.html" (dict "context" . "dateformat" "Jan 02, 2006") }}
2022-05-11 14:04:08 +02:00
</li>
{{ end }}
</ul>
</div>
</div>
2021-08-25 11:53:41 +02:00
</div>
2022-05-11 14:04:08 +02:00
</div>
2021-08-24 20:06:02 +02:00
{{ end }}