-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
34 lines (29 loc) · 1.14 KB
/
gallery.html
File metadata and controls
34 lines (29 loc) · 1.14 KB
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
---
title: Gallery
layout: general
gallery: true
---
<h2>Gallery</h2>
<p>For more photos, check out our <a href="https://www.facebook.com/DUBotics">Facebook page</a>!</p>
<div class="form-group">
<button id="image-gallery-button" type="button" class="btn btn-lg btn-primary">
<i class="glyphicon glyphicon-picture"></i>
Launch Slideshow »
</button>
</div>
<div id="links" class="gallery-full">
{% for album in site.gallery %}
<h3>{{ album.title }}</h3>
<div class="clearfix">
{% for image in album.images %}
<a href="{{ site.relative }}{{ image.url }}" title="{{ image.caption }}" class="thumbnail gallery-thumbnail pull-left" data-gallery>
{% if image.thumbnail %}
<img src="{{ site.relative }}{{ image.thumbnail }}" alt="{{ image.caption }}" class="img-responsive">
{% else %}
<img src="{{ site.relative }}{{ image.url }}" alt="{{ image.caption }}" class="img-responsive">
{% endif %}
</a>
{% endfor %}
</div>
{% endfor %}
</div>