-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
27 lines (25 loc) · 890 Bytes
/
gallery.html
File metadata and controls
27 lines (25 loc) · 890 Bytes
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
---
title: Gallery
permalink: "/gallery/"
description: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta veritatis
in tenetur doloremque, maiores doloribus officia iste. Dolores.
layout: minimal
hero_image: "/images/sprinkles_background_1.jpg"
---
<div class="site-section">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="heading-border-bottom font-weight-bold serif text-black mb-5 text-center">See Our galleries</h2>
</div>
</div>
<div class="row">
{% for image in site.images %}
<div class="col-lg-3 col-md-6 mb-5 mb-lg-5">
<a href="{{ image.image | prepend: site.baseurl }}" data-fancybox="gal" class=""><img src="{{ image.image | prepend: site.baseurl }}" alt="{{ image.title }}" class="img-fluid"></a>
</div>
{% endfor %}
</div>
</div>
</div>
{% include sale.html %}