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

single.html « _default « layouts - github.com/yanlinlin82/simple-style.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4772ced72739590eb462b59069de9aa73b8bd12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{{ define "main" -}}
<article>
  <div class="title">
    <h1>{{ .Title }}</h1>
    {{ with .Params.Subtitle -}}
    <h2>{{ . }}</h2>
    {{ end -}}
  </div>
  {{ if .Date -}}
  <div class="meta">{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02 15:04") }}</div>
  {{ end -}}
  {{ $taxo := "tags" -}}
  {{ if .Param $taxo -}}
  <div class="meta">
    {{ $data := newScratch }}
    {{ range .Param $taxo -}}
    {{ $name := . -}}
    {{ with $.Site.GetPage (printf "/%s/%s" $taxo ($name | anchorize)) }}
    {{ $data.Set "url" .Permalink }}
    {{ end }}
    {{ with $.Site.GetPage (printf "/%s/%s" $taxo ($name | urlize)) }}
    {{ $data.Set "url" .Permalink }}
    {{ end }}
    <div class="tag"><a href="{{ $data.Get "url" }}">#{{ $name }}</a></div>
    {{ end -}}
  </div>
  {{ end -}}
  <div class="artical-body">
  {{ if ne .TableOfContents "<nav id=\"TableOfContents\"></nav>" }}
    {{ .TableOfContents }}
    <div class="content-with-toc">
      {{ .Content -}}
    </div>
  {{ else }}
    <div class="content">
      {{ .Content -}}
    </div>
  {{ end }}
  </div>
</article>
{{ end -}}