brainbaking/layouts/_default/list.html

38 lines
1019 B
HTML
Raw Normal View History

{{ partial "header" . }}
<main>
<h2><i class='fa {{ .Params.icontag }}'></i>&nbsp;{{ .Title }}</h2>
<hr/>
{{ with .Content }}
<div class="text-justify">
{{ . }}
</div>
<hr/>
{{ end }}
{{ range .Data.Pages.GroupByDate "01-2006" "desc" }}
<h4 style="float: left; color: grey;">{{ .Key }}</h4>
<ul style="text-align: left; float: left; margin-left: 20px; width: 80%; list-style-type: none; border-left: #eee 1px solid;">
{{ range .Pages.ByDate.Reverse }}
{{ .Date.Format (.Site.Params.dateFormat | default "2 January") | $.Scratch.Set "subtitle" }}
{{ with .Description }} {{ $.Scratch.Set "subtitle" . }} {{ end }}
<li style="margin-bottom: 15px;">
<h4>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h4>
{{ .Params.subtitle }} <span style="color: lightgrey;"><i class='fa fa-calendar'></i>&nbsp;{{ $.Scratch.Get "subtitle" }}</span>
</li>
{{ end }}
</ul>
<hr style="clear: both;"/>
{{ end }}
</main>
{{ partial "footer" . }}