-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphotography.html
More file actions
48 lines (42 loc) · 1.11 KB
/
Copy pathphotography.html
File metadata and controls
48 lines (42 loc) · 1.11 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
layout: none
title: Photography
---
<!doctype html>
<html>
<head>
{% include head.html gallery=true %}
</head>
<body>
<div class="container">
{% include header.html %}
</div>
<div id="page" class="hfeed site">
<div id="main" class="site-main">
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<div class="layout-full">
<div class="gallery-grid">
{%- assign items = "nature,people,landscape,street,animals,urban,abstract" | split: "," %}
{%- for item in items %}
<div class="masonry-item">
<figure>
<img src="/images/gallery/{{item}}/cover.jpg" alt="{{item}}"/>
<figcaption>
<h2>{{item|upcase}}</h2>
<a href="/photography/{{item}}"></a>
</figcaption>
</figure>
</div>
{%- endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
{% include footer.html %}
</div>
</body>
</html>