11 lines
194 B
HTML
11 lines
194 B
HTML
|
{{ partial "header.html" . }}
|
||
|
<section class="article-list">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ range .Data.Pages }}
|
||
|
<hr/>
|
||
|
{{ .Render "li" }}
|
||
|
{{ end }}
|
||
|
</section>
|
||
|
{{ partial "footer.html" . }}
|
||
|
|