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

clients.html « partials « layouts - github.com/uicardiodev/hugo-lime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3e807da191bfde11345f7b56c2ebc6abe1fa4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ $clients := .Site.Data.clients }}
<section class="text-center py-5">
  <div class="container">
    <h2 class="pt-5 h2">{{ $clients.title }}</h2>  
    <p class="text-muted pb-5">{{ $clients.description }}</p>
    <div>
      <div class="row justify-content-center align-items-center">
        {{ range $clients.clients }}
          <div class="col-lg-3 col-md-4 col-8 mb-4">
              <img style="max-width:100%" src="{{.Site.BaseURL}}images/clients/{{.image }}" alt="{{ .title }}">
          </div>
          
        {{ end }}
      </div>
    </div>
  </div>
</section>