-
Notifications
You must be signed in to change notification settings - Fork 33
/
gallery.html
62 lines (58 loc) · 1.86 KB
/
gallery.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: page
title: Our Work
permalink: /gallery/
headerTitle: Photo Gallery
headerSubCopy: Automatically generated from img/gallery folder.
custom_head_owl: true
---
{% include global-header.html %}
<!-- Portfolio Start -->
<section id="portfolio-work">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<div class="image-gallery">
{% for image in site.static_files %}
{% if image.path contains 'img/gallery' %}
<div class="image-gallery-item">
<a href="{{ site.baseurl }}{{ image.path }}">
<img src="{{ site.baseurl }}{{ image.path }}" alt="image" />
<div class="overly">
<div class="position-center">
<h2>Click To View</h2>
</div>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Logo Section Start -->
<section id="clients-logo-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>We work with clients such as: </h2>
<div class="block">
<div id="clients-logo" class="owl-carousel">
{% for image in site.static_files %}
{% if image.path contains 'img/clients' %}
<div class="clients-logo-img">
<img src="{{ site.baseurl }}{{ image.path }}">
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</section>
{% include call-to-action.html %}