19 lines
429 B
HTML
19 lines
429 B
HTML
{{ define "title"}} {{ .Title}} {{end}}
|
|
{{ define "header"}} {{ partial "header" .}} {{end}}
|
|
|
|
{{ define "main" }}
|
|
|
|
<div id="hero" class="wrap">
|
|
<h1>Voice of {{.Site.Params.author }} Developers</h1>
|
|
</div>
|
|
<ul id="posts">
|
|
|
|
{{ range .Paginator.Pages.ByWeight }} {{ partial "page-summary" . }} {{ end }}
|
|
<section>{{ partial "pagination" .}}</section>
|
|
</ul>
|
|
|
|
{{ end }}
|
|
{{ define "footer" }}
|
|
{{ partial "footer" . }}
|
|
{{ end }}
|