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

single.html « _default « layouts - github.com/4ever9/less.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b5b1f16be85692ee2658f6f6699446ec6d5be52 (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
{{ define "main" }}
    <div class="container">
        <div class="main">
            <div class="single">
                <div class="single-title">
                    {{.Title}}
                </div>
                    <div class="single-date">
                        {{ .Date.Format "2006-01-02" }}
                    </div>
<!--                     {{ if .Params.tags }} -->
<!--                         <div class="single-tags"> -->
<!--                             {{ range $k, $v := .Params.tags }} -->
<!--                                 <a class="single-tag" href="{{ "tags/" | absLangURL }}{{ . }}"> -->
<!--                                     #{{ . }} -->
<!--                                 </a> -->
<!--                             {{ end }} -->
<!--                         </div> -->
<!--                     {{ end }} -->
                <div class="single-content">
                    {{.Content}}
                </div>
                <div class="single-toc"></div>
            </div>
        </div>
    </div>
{{ end }}