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

github.com/themefisher/timer-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/gallery/list.html')
-rw-r--r--layouts/gallery/list.html36
1 files changed, 19 insertions, 17 deletions
diff --git a/layouts/gallery/list.html b/layouts/gallery/list.html
index 41a0c18..1709f55 100644
--- a/layouts/gallery/list.html
+++ b/layouts/gallery/list.html
@@ -3,25 +3,27 @@
{{ partial "page-title.html" . }}
<section id="gallery" class="gallery">
- <div class="container">
- <div class="row">
- {{ range $index, $element := .Site.Data.gallery.galleryImages }}
- <div class="col-md-4 col-sm-6">
- {{ $delay := mul $index 300 }}
- <figure class="wow fadeInLeft animated portfolio-item animated" data-wow-duration="500ms" data-wow-delay="{{ $delay }}ms" style="visibility: visible; animation-duration: 300ms; -webkit-animation-duration: 300ms; animation-delay: 0ms; -webkit-animation-delay: 0ms; animation-name: fadeInLeft; -webkit-animation-name: fadeInLeft;">
- <div class="img-wrapper">
- <img src="{{ .image | absURL }}" class="img-fluid" alt="this is a title">
- <div class="overlay">
- <div class="buttons">
- <a rel="gallery" class="fancybox" href="{{ .image | absURL }}">Demo</a>
- </div>
- </div>
- </div>
- </figure>
+ <div class="container">
+ <div class="row">
+ {{ range $index, $element := .Site.Data.gallery.galleryImages }}
+ <div class="col-md-4 col-sm-6">
+ {{ $delay := mul $index 300 }}
+ <figure class="wow fadeInLeft animated portfolio-item animated" data-wow-duration="500ms"
+ data-wow-delay="{{ $delay }}ms"
+ style="visibility: visible; animation-duration: 300ms; -webkit-animation-duration: 300ms; animation-delay: 0ms; -webkit-animation-delay: 0ms; animation-name: fadeInLeft; -webkit-animation-name: fadeInLeft;">
+ <div class="img-wrapper">
+ <img src="{{ .image | absURL }}" class="img-fluid" alt="this is a title">
+ <div class="overlay">
+ <div class="buttons">
+ <a rel="gallery" class="fancybox" href="{{ .image | absURL }}">Demo</a>
+ </div>
</div>
- {{ end }}
- </div>
+ </div>
+ </figure>
+ </div>
+ {{ end }}
</div>
+ </div>
</section>
{{ partial "cta.html" . }}