planblog/layouts/_default/list.html

11 lines
194 B
HTML
Raw Normal View History

2015-02-02 09:54:20 +00:00
{{ partial "header.html" . }}
<section class="article-list">
<h1>{{ .Title }}</h1>
{{ range .Data.Pages }}
<hr/>
{{ .Render "li" }}
{{ end }}
</section>
{{ partial "footer.html" . }}