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

list.html « _default « layouts - github.com/tummychow/lanyon-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ece5574fb91ac427ae1e7ec0d0ed0a10601710c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ partial "default_head.html" . }}

<div class="post">
  <h1 class="post-title">{{ .Title }}</h1>
  <ul id="list">
    {{ range .Data.Pages }}
    <li>{{ .Site.Params.DateForm | default "Jan 2, 2006" | .Date.Format }} -
      <a href="{{ .Permalink }}">{{ .Title }}</a>
    </li>
    {{ end }}
  </ul>
</div>

{{ partial "default_foot.html" . }}