Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/yoshiharuyamashita/blackburn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a45b01c60484b4542f02af3c332ef27b5d8609c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ partial "header.html" . }}

<div class="header">
  <h1>{{ .Title }}</h1>
  <h2>{{ .Site.Params.subtitle }}</h2>
</div>

<div class="content">
  {{ range .Paginator.Pages }}
    {{ if eq .Type "post" }}
      {{ .Render "summary"}}
    {{ end }}
  {{ end }}

  {{ partial "pagination.html" . }}

</div>

{{ partial "footer.html" . }}