jefklakscodex/themes/jefklak-creative-portfolio/layouts/partials/articlelist.html

18 lines
514 B
HTML

{{ range .Data.Pages.GroupByDate "01-2006" "desc" }}
<h5 style="float: left; color: grey;">
<svg class='icon icon-inline'>
<use xlink:href='#cal1'></use>
</svg>
&nbsp;{{ .Key }}
</h5>
<ul style="text-align: left; float: left; margin-left: 20px; list-style-type: none; border-left: #eee 1px solid; padding: 0">
{{ range .Pages.ByDate.Reverse }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
<div style="clear: both;"></div>
{{ end }}