You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
434 B
14 lines
434 B
{{ define "main" }}
|
|
<!-- the blog/list.html layout is used to render the list of posts under "blog" -->
|
|
<article class="article-list">
|
|
<header>
|
|
<h1>Articles</h1>
|
|
</header>
|
|
{{ .Content }}
|
|
|
|
{{ range (.Paginate (sort .Pages "Date").Reverse).Pages }}
|
|
{{- partial "article-headline.html" (dict "current" . "parent" $.Page) -}}
|
|
{{ end }}
|
|
{{ template "_internal/pagination.html" . }}
|
|
</article>
|
|
{{ end }}
|
|
|