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

18 lines
514 B
HTML
Raw Normal View History

2018-05-19 12:11:57 +02:00
{{ range .Data.Pages.GroupByDate "01-2006" "desc" }}
<h5 style="float: left; color: grey;">
2021-03-25 17:49:44 +01:00
<svg class='icon icon-inline'>
<use xlink:href='#cal1'></use>
</svg>
&nbsp;{{ .Key }}
2018-05-19 12:11:57 +02:00
</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>
2018-05-19 12:11:57 +02:00
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
<div style="clear: both;"></div>
2018-05-19 12:11:57 +02:00
{{ end }}