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

category.html « _default « layouts - github.com/alexandrevicenzi/soho.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f66747eaa9ea51b6a71e43c4af8bce738ebef00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" -}}
<ul class="posts">
  <h1>Category: {{ .Title }}</h1>
  {{ range .Data.Pages -}}
  <li>
    <span>
        <a href="{{ .Permalink }}">{{ .Title }}</a>
        <time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
    </span>
  </li>
  {{- end }}
</ul>
{{- end }}