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

clients.html « partials « layouts - github.com/devcows/hugo-universal-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 647d16f6c768062ccde0d463a503d9743f477ebe (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
25
26
27
28
29
30
31
{{ if isset .Site.Params "features" }}
{{ if .Site.Params.features.enable }}
{{ if gt (len .Site.Data.features) 0 }}
<section class="bar background-gray no-mb">
    <div class="container">
        <div class="row">
            <div class="col-md-12">
                <div class="heading text-center">
                    <h2>{{ .Site.Params.clients.title }}</h2>
                </div>

                <p class="lead">
                  {{ .Site.Params.clients.subtitle }}
                </p>

                <ul class="owl-carousel customers">
                    {{ range .Site.Data.clients }}
                    <li class="item">
                        <img src="{{ .image }}" alt="{{ .name }}" class="img-responsive">
                    </li>
                    {{ end }}
                </ul>
                <!-- /.owl-carousel -->
            </div>

        </div>
    </div>
</section>
{{ end }}
{{ end }}
{{ end }}