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

list.html « posts « layouts « src - github.com/twbs/blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f491a7a4447812a93208d4dbae13b5872b4dc5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
<div class="posts-container mx-auto px-3 py-5">
  {{ $postsByYear := .Data.Pages.GroupByDate "2006" -}}
  {{- range $postsByYear }}
  <h3>{{ .Key }}</h3>
  <ul class="list mb-5">
    {{ range .Pages -}}
    <li>
      <span>{{ .Date | dateFormat "Jan 02, 2006" }}</span>
      <a href="{{ .RelPermalink }}">{{ .Title }}</a>
    </li>
    {{- end }}
  </ul>
  {{- end }}
</div>
{{- end }}