hugo-theme-apache2/layouts/_default/list.html

18 lines
504 B
HTML

{{ block "main" . }}
{{ partial "header.html" . }}
{{ partial "nav.html" . }}
<div class="grid-display">
<section class="posts">
<div class="section_header">posts</div>
{{ range first 5 .Pages }}
<div class="content_section_text">
<p><a href="{{ .RelPermalink }}">/{{ .Title }}/</a></p>
<br>
<p>{{ .Summary }}</p>
</div>
{{ end }}
</section>
</div>
{{ end }}