hugo-code-editor-theme/layouts/_default/list.html

11 lines
294 B
HTML

{{ partial "top.html" . }}
<div class="articles-list">
{{ range .Data.Pages }}
<article>
<h3><a href="{{ .Permalink }}">{{ .Title }}</a> - {{ dateFormat "01-02-2006 15:04:05" .Date }}</h3>
{{ .Summary }}
</article>
{{ end }}
</div>
{{ partial "bottom.html" . }}