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

download.html « home « partials « layouts - github.com/miguelsimoni/hugo-initio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1e24dd730245b13cd675c3aecba2aac44897bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ range where .Data.Pages "Section" .Section }}
    <div class="row section topspace">
        <div class="panel panel-cta">
            <div class="panel-body">
                <div class="col-lg-8">
                    {{ .Content }}
                </div>
                <div class="col-lg-4 text-right">
                    <a href={{ .Params.file }} class="btn btn-primary btn-lg">{{ .Title }}</a>
                </div>
            </div>
        </div>
    </div> <!-- /section -->
{{ end }}