-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
29 lines (27 loc) · 994 Bytes
/
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
---
layout: page
title: Gallery
permalink: /gallery/
images:
- image_path: /gallery/pot.gif
title: Brewing Pot
date: 2016-06-26
description: My first attempt at making animated pixel art (made in Hexels 2).
- image_path: /gallery/clouds_3x.gif
title: Clouds at Dusk
date: 2016-06-29
description: The scenery was based on a photo I took a long time ago (made in Hexels 2). This piece was inspired by pixel art artist Waneella.
- image_path: /gallery/orange_3x.gif
title: Slience at Sunset
date: 2016-06-29
description: Many years ago I saw a breath-taken photo of a forest in XinJiang province from National Geographic magazine. This piece was inspired by instagram artiest @pixelart.jpg.
---
<ul class="photo-gallery">
{% for image in page.images %}
<li>
<p>{{image.title}} [{{image.date}}]</p>
<img src="{{ image.image_path }}" alt="{{ image.title}}"/><br>
<p>{{image.description}}</p>
</li>
{% endfor %}
</ul>