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

single.html « post « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c6d449533ea040891334747c1b928cf5acfbe0a (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
42
43
44
45
46
47
48
{{ partial "core/html-start.html" . }}

{{ partial "core/head.html" . }}

<body class="page-colors minimum-viewport-height">
    {{ partial "core/main-menu.html" . }}

    <div class="main-content">
        <div class="center-space">
            <div class="article-colors">
                {{ with .Params.image }}
                    <img src="{{ . }}" class="fill-container-width"></img>
                {{ end }}
                <article>
                    <header>
                        <h1 class="article-title">{{ .Title }}</h1>
                        <time class="date-color">{{ .Date.Format "Mon Jan 02, 2006" }}</time>
                        <span class="separator">|</span>
                        {{ partial "extra/categories.html" . }}
                        <span class="separator">|</span>
                        {{ partial "extra/tags.html" . }}
                    </header>

                    <hr>

                    <section>
                        {{ with .Params.redirect }}
                            <p>If you are not redirected automatically, follow the <a href="{{ . }}">link</a>.</p>
                        {{ else }}
                            {{ .Content }}
                        {{ end }}
                    </section>

                    {{ partial "extra/disqus.html" . }}

                    <footer class="right-align">
                        <p><small>{{ .Site.Copyright | markdownify }}</small></p>
                    </footer>
                </article>
            </div>
        </div>
    </div>

    {{ partial "core/js.html" . }}
</body>

{{ partial "core/html-end.html" . }}