-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
62 lines (56 loc) · 1.96 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: Gallery
---
<div class="row">
{% assign gallery = site.gallery | sort: 'eventDate' reversed %}
{% for photoDescription in gallery %}
<div class="col-lg-3 col-md-6 col-sm-12 img-portfolio">
<a href="#" class="portfolio-box">
<img src="{{ site.baseurl }}/img/gallery/{{ photoDescription.image }}" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-title text-faded">
{{ photoDescription.title }}
</div>
<div class="project-date">
{{ photoDescription.eventDate | date: '%B %-d, %Y' }}
</div>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
<!-- /.row -->
<!-- Pagination -->
<!-- Used when total number of pics > 12-->
<!-- Create a new gallery.html,then ref the page accordingly-->
<!-- <div class="row text-center">
<div class="col-lg-12">
<ul class="pagination">
<li>
<a href="#">«</a>
</li>
<li class="active">
<a href="#">1</a>
</li>
<li>
<a href="#">2</a>
</li>
<li>
<a href="#">3</a>
</li>
<li>
<a href="#">4</a>
</li>
<li>
<a href="#">5</a>
</li>
<li>
<a href="#">»</a>
</li>
</ul>
</div>
</div> -->
<!-- /.row -->