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.
13 lines
367 B
13 lines
367 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 (sort .Pages "Date").Reverse }}
|
|
{{- partial "article-headline.html" (dict "current" . "parent" $.Page) -}}
|
|
{{ end }}
|
|
</article>
|
|
{{ end }}
|
|
|