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

single.html « _default « layouts - gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e725f04c49342c5bbbecc5d3ec9e15021233962e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}

<div class="row">
    <div class="col">

        <h1 class="mb-3">{{ .Title }} - {{ .Date.Format "Mon, Jan 2, 2006" }}</h1>

        <p class="lead">{{ .Params.description }}</p>
        {{ .Content }}

    </div>
</div>
<div class="row align-center">
    <div class="col">
        <a href="{{ .Site.BaseURL }}" class="btn btn-primary btn-lg">{{ i18n "backtohome" }}</a>
    </div>
</div>

{{ end }}