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

single.html « _default « layouts - github.com/shankar/hugo-grapes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c0c350bc7c8102de6f084525ff6c81142762b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<main id="single">
    <div id="post" class="white">
	<div class="container">
	    <div id="title">
                <h1>{{ .Title }}</h1>
                {{ .Render "time-element" }}
	    </div>
            <section class="post-content">
                {{ .Content }}
            </section>
	</div>
    </div>
</main>
{{ end }}