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: 895fa202eb075062c7dd0255a511e65c4f007ee2 (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
{{ partial "head" . }}

<body class="template template--post">
    <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" . }}
    {{ partial "js" . }}
</body>
</html>