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

single.html « _default « layouts - github.com/kongdivin/hugo-theme-okayish-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4faa74631bf4c45fb500149cf08239847f632d2b (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
{{ define "main" }}
<header class="p-strip page-banner">
    <div class="row">
        <h1>{{ .Title | markdownify }}</h1>
    </div>

    {{ partial "single/post-meta.html" . }}
</header>

<section class="p-strip is-shallow">
    <main class="row post-content">
        {{ .Content }}
    </main>
</section>

<footer class="p-strip is-wrapper">
    <div class="row">
        {{ partial "single/pagination.html" . }}
    </div>
</footer>

{{ if $.Site.DisqusShortname }}
<div class="p-strip u-no-padding--bottom is-shallow">
    <div class="row">
        {{ template "_internal/disqus.html" . }}
    </div>
</div>
{{ end }}

{{ end }}