-
Notifications
You must be signed in to change notification settings - Fork 12
/
screenshots.html
58 lines (51 loc) · 2.46 KB
/
screenshots.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
47
48
49
50
51
52
53
54
55
56
57
58
---
layout: default
title: Screenshots
---
<link href="lightbox/lightbox.css" rel="stylesheet" />
<script src="lightbox/lightbox-plus-jquery.js"></script>
<article id="pagebody" class="screenshotpage">
<h2>Screenshots</h2>
<section>
<h3>Release 0.6.0</h3>
<div>
{% for screenshot in site.data.screenshots["v0.6.0"] %}
<a href="{{ site.baseurl }}/{{ screenshot.large }}" data-lightbox="0.6.0_img"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="125"/></a>
{% endfor %}
</div>
</section>
<section>
<h3>Release 0.5.1</h3>
<div>
{% for screenshot in site.data.screenshots["v0.5.1"] %}
<a href="{{ site.baseurl }}/{{ screenshot.large }}" data-lightbox="0.5.1_img"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="125"/></a>
{% endfor %}
</div>
</section>
<section>
<h3>Release 0.4.0</h3>
<div>
{% for screenshot in site.data.screenshots["v0.4.0"] %}
<a href="{{ site.baseurl }}/{{ screenshot.large }}" data-lightbox="0.4.0_img"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="150"/></a>
{% endfor %}
</div>
</section>
<section>
<h3>Release 0.3.5</h3>
{% for screenshot in site.data.screenshots["v0.3.5"] %}
<a href="{{ site.baseurl }}/{{ screenshot.large }}" data-lightbox="0.3.5_img"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="150"/></a>
{% endfor %}
</section>
<section>
<h3>Release 0.3.0</h3>
{% for screenshot in site.data.screenshots["v0.3.0"] %}
<a href="{{ site.baseurl }}/{{ screenshot.large }}" data-lightbox="0.3.0_img"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="150"/></a>
{% endfor %}
</section>
<section>
<h3>Release 0.1.4 (Milestone 1)</h3>
{% for screenshot in site.data.screenshots["v0.1.4"] %}
<a href="{{ site.baseurl }}/{{ screenshot.large }}" data-lightbox="0.1.4_img"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="150"/></a>
{% endfor %}
</section>
</article>