Skip to content

Commit 9da8ffe

Browse files
committed
#14 Gallery page added & a few photos added
1 parent 9303a70 commit 9da8ffe

7 files changed

Lines changed: 20 additions & 0 deletions

File tree

_includes/header.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<li class="nav-item">
55
<a class="nav-link" href="/">Projects</a>
66
</li>
7+
<li class="nav-item">
8+
<a class="nav-link" href="gallery.html">Gallery</a>
9+
</li>
710
</ul>
811
</nav>
912

_layouts/gallery.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{% include head.html %}
2+
3+
<div class="container">
4+
{% include header.html %}
5+
6+
{% for image in site.static_files %}
7+
{% if image.path contains 'img/gallery' %}
8+
<img class="img-thumbnail" src="{{ site.baseurl }}{{ image.path }}" alt="HackBrexit 1st Hackathon Photo">
9+
{% endif %}
10+
{% endfor %}
11+
</div>
12+
{% include footer.html %}
13+
14+
{% include foot.html %}

gallery.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
layout: gallery
3+
---
644 KB
Loading
804 KB
Loading
671 KB
Loading
837 KB
Loading

0 commit comments

Comments
 (0)