mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2024-11-10 05:59:41 +00:00
23 lines
627 B
HTML
23 lines
627 B
HTML
{{ define "main" }}
|
|
<div id="main">
|
|
<div class="container">
|
|
{{ partial "content.html" . }}
|
|
{{ if .Content }}
|
|
<hr>
|
|
{{ 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" . }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|