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

single.html « _default « layouts - github.com/meibenny/elephants.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c453a7a4cb346fcf2371fb56a6769c84541b243 (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
{{ partial "header.html" . }}

<section class="blog-post">
    <h1>{{ .Title }}</h1>
    <div class="blog-post-subheader">
        {{ .Date.Format (.Site.Params.dateform | default "January 2, 2006") }}
    </div>
    <div class="blog-post-content">
        {{ .Content }}
    </div>
</section>
{{ if .Params.Tags }}
<section class="post-tags">
  <hr>
  Tags:
  <ul class="post-tag-list">
    {{ range (.GetTerms "tags") }}
      <li class="post-tag-list-item"><a href="{{ .Permalink }}">{{ .LinkTitle }}</a>;</li>
    {{ end }}
  </ul>
</section>
{{ end }}

{{ partial "footer.html" . }}