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

index.html « layouts - github.com/coderzh/hugo-pacman-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c239f0c8b13351df8b6746cc5a6409b3ba6ca8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ partial "head.html" . }}
<body>
  <header>
    {{ partial "header.html" . }}
  </header>
  <div id="container">
    <div id="main">
      {{ range $index,$data := .Data.Pages }}
      {{ if ge $data.Date.Year .Now.Year }}
      {{ partial "article.html" $data }}
      {{ end }}{{ end }}
      <nav id="page-nav" class="clearfix">
        <a class="page-number" href="/post/">More...</a>
      </nav>
    </div>
    {{ partial "sidebar.html" . }}
  </div>
  <footer>{{ partial "footer.html" . }}</footer>
  {{ partial "after_footer.html" .}}
</body>
</html>