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

services.html « partials « layouts - github.com/miguelsimoni/hugo-initio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c22c9d081fb8862ba8c1df7b08ee516a414f95e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="row section featured topspace">

    <h2 class="section-title"><span>Services</span></h2>

    <div class="">
        {{ range where .Site.RegularPages "Section" "service" }}
            <div class="col-sm-6 col-md-3">
                <h3 class="text-center">{{ .Title }}</h3>
                <p>{{ .Summary }}</p>
                <p class="text-center"><a href="{{ .Permalink }}" class="btn btn-action">Read more</a></p>
            </div>
        {{ end }}
    </div>

</div> <!-- / section -->