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

single.html « _default « layouts - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3406891672833e346c92c52bd04ec8dcbab96a2e (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
{{ partial "head" . }}

<body class="post-template">
    <div class="page">
        <section class="header-wrapper">
            {{ partial "header" . }}
            {{ partial "navigation" . }}
        </section>
        <main class="content" role="main" id="main-content" itemscope itemtype="http://schema.org/Article">
            <article class="post">
                <header>
                    <h1 class="post-title" itemprop="name">{{ .Title }}</h1>
                </header>
                <section class="post-content" itemprop="articleBody">
                    {{ .Content }}
                </section>
                <footer class="post-meta">
                    {{ partial "post-meta" . }}
                </footer>
            </article>
        </main>
        {{ partial "footer" . }}
    </div>
    {{ partial "js" . }}
</body>
</html>