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

article.html « partials « layouts - github.com/pavel-pi/kiss-em.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de3225e8932761433dc3e2af038ef09ab0f21361 (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
<!-- Article Tags -->
<div class="subtitle tags is-6 is-pulled-right">
    {{ if .Params.tags }}
        {{ partial "tags" .Params.tags }}
    {{ end }}
</div>

<!-- Date above Article Title-->
{{if not .Date.IsZero }}
<h2 class="subtitle is-6">
    <!-- Consider german month names -->
    {{if eq .Site.Language.Lang "de" }}
        {{ .Date.Day }}. {{ index $.Site.Data.monate (printf "%d" .Date.Month) }} {{ .Date.Year }}, {{ .Date.Format "15:04" }}                 
    {{ else }}
        {{ .Date.Format "January 2, 2006 | 15:04" }}
    {{ end }}
</h2>
{{ end }}

<!-- Article Title -->
<h1 class="title">{{ .Title }}</h1>

<div class="content">

    <!-- Article Content -->
    {{ .Content }}

    <!-- Related Articles -->
    {{ if .Site.Params.Info.related }}
        <div class="related">{{ partial "related" . }}</div>
    {{ end }}

</div>