forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pastries.html
46 lines (46 loc) · 1.36 KB
/
pastries.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
---
css: /css/photo.css
images:
-
image_path: "/img/cakes/Nintendo Cake 001.jpg"
title: "Princess Peach Castle"
-
image_path: "/img/cakes/Nintendo Cake 002.jpg"
title: "Princess Peach Castle"
-
image_path: "/img/cakes/Nintendo Cake 003.jpg"
title: "Toad on a pipe"
-
image_path: "/img/cakes/Nintendo Cake 004.jpg"
title: "Sorry, the princess is in another castle"
-
image_path: "/img/cakes/Nintendo Cake 005.jpg"
title: "Bad Donkey Kong"
-
image_path: "/img/cakes/Nintendo Cake 006.jpg"
title: "Chain Chomp"
-
image_path: "/img/cakes/Nintendo Cake 008.jpg"
title: "Piranha pipe"
-
image_path: /img/cakes/small_IMG_0198.JPG
title: "Galaxy cake"
-
image_path: /img/cakes/small_IMG_0201.JPG
title: Scheeeewonnggg
-
image_path: /img/cakes/small_IMG_0207.JPG
title: "Head Cannon"
-
image_path: /img/cakes/small_IMG_2819.JPG
title: "You euthanized your faithful Companion Cube more quickly than any test subject on record. Congratulations."
-
image_path: /img/cakes/small_IMG_2820.JPG
title: "Oh, you think you're doing some damage? Two plus two is [static] … ten. IN BASE FOUR! I'M FINE!"
layout: minimal
---
<ul class="photo-gallery">
{% for image in page.images %}
<li><img src="{{ image.image_path }}" alt="{{ image.title}}"/></li>
{% endfor %}
</ul>