recettes/themes/hugo-recettes/layouts/_default/list.html

14 lines
346 B
HTML

{{ partial "header.html" . }}
<main role="main">
<h1 class="list-title">{{ .Title }}</h1>
{{ range .Data.Pages }}
<article itemscope itemtype="http://schema.org/Blog">
<h2 class="entry-title" itemprop="headline">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h2>
</article>
{{ end }}
</main>
{{ partial "footer.html" . }}