tlwiki-hugo-theme/layouts/partials/postlist.html

15 lines
305 B
HTML
Raw Normal View History

{{ range .Pages }}
2021-11-21 19:49:30 +00:00
{{ with .Params.hide }}
{{ else }}
<article class="post">
<header class="post__header">
<h2><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
</header>
<section class="post__summary">
{{ .Description }}
</section>
</article>
{{ end }}
{{ end }}