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

list.html « products « layouts - github.com/themefisher/vex-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 012ae303208bab74e4e113870f2e7b3bb95730d0 (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
{{ define "main" }}

<section class="section gallery">
  <div class="container">
    <div class="row">
      <div class="col-12 text-center mb-5">
        <h1>{{.Title}}</h1>
      </div>
      {{ range (where .Site.RegularPages "Section" "products") }}
      <div class="col-lg-3 col-md-4 col-sm-6 mb-4">
        <div class="block">
          <div class="gallery-overlay">
            <a href="{{ .Permalink }}" class="gallery-popup">
              <i class="tf-ion-ios-search"></i>
            </a>
          </div>
          <img class="img-fluid" src="{{ .Params.image | absURL }}" alt="{{.Title}}">
        </div>
        <h4 class="text-center">{{.Title}}</h4>
      </div>
      {{ end }}
    </div>
  </div>
</section>

{{ end }}