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

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

{{ if hasPrefix .URL "/blog/" }}

  {{ range sort .Paginator.Pages }}
    <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
    <p class="timestamp">{{ .Date.Format "January 2, 2006" }}</p>
    <div class="content">
    {{ .Summary | plainify | safeHTML }}
    {{ if .Truncated }}
      ... <a href="{{ .Permalink }}">Read more &hellip;</a>
    {{ end }}
    </div>
    {{ if .Params.tags }}
      {{ partial "tags" .Params.tags }}
    {{ end }}
  {{ end }}
  {{ partial "pagination.html" . }}

{{ end }}

{{ partial "footer.html" . }}