forked from openfl/www.openfl.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowcase.html
74 lines (68 loc) · 5.47 KB
/
showcase.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
layout: default
title: Showcase
permalink: showcase/
---
<h1>Showcase</h1>
{% assign count = 0 %}
{% for showcase in site.data.showcase %}
{% if showcase.featured %}
{% cycle '<div class="row">', '' %}
<div class="col-md-6">
<h2>{{ showcase.title }}</h2>
<p><a href="{{ showcase.url }}" target="_blank"><img src="{{ site.baseurl }}images/showcase/large/{{ showcase.image }}" style="width: 100%; max-width: 460px; margin: 0 auto;" /></a></p>
<p style="text-decoration: none; color: #dddddd; font-size: 20px;">
{% if showcase.windows %}<a href="{{ showcase.windows }}" target="_blank">{% endif %}<span class="icon-windows"></span>{% if showcase.windows %}</a>{% endif %}
{% if showcase.mac %}<a href="{{ showcase.mac }}" target="_blank">{% endif %}<span class="icon-apple"></span>{% if showcase.mac %}</a>{% endif %}
{% if showcase.linux %}<a href="{{ showcase.linux }}" target="_blank">{% endif %}<span class="icon-linux"></span>{% if showcase.linux %}</a>{% endif %}
{% if showcase.ios %}<a href="{{ showcase.ios }}" target="_blank">{% endif %}<span class="icon-apple"></span>{% if showcase.ios %}</a>{% endif %}
{% if showcase.android %}<a href="{{ showcase.android }}" target="_blank">{% endif %}<span class="icon-android"></span>{% if showcase.android %}</a>{% endif %}
{% if showcase.blackberry %}<a href="{{ showcase.blackberry }}" target="_blank">{% endif %}<span class="icon-blackberry"></span>{% if showcase.blackberry %}</a>{% endif %}
{% if showcase.firefoxos %}<a href="{{ showcase.firefoxos }}" target="_blank">{% endif %}<span class="icon-firefox"></span>{% if showcase.firefoxos %}</a>{% endif %}
{% if showcase.tizen %}<a href="{{ showcase.tizen }}" target="_blank">{% endif %}<span class="icon-tizen"></span>{% if showcase.tizen %}</a>{% endif %}
{% if showcase.amazon %}<a href="{{ showcase.amazon }}" target="_blank">{% endif %}<span class="icon-amazon"></span>{% if showcase.amazon %}</a>{% endif %}
{% if showcase.flash %}<a href="{{ showcase.flash }}" target="_blank">{% endif %}<span class="icon-flash"></span>{% if showcase.flash %}</a>{% endif %}
{% if showcase.html5 %}<a href="{{ showcase.html5 }}" target="_blank">{% endif %}<span class="icon-html5"></span>{% if showcase.html5 %}</a>{% endif %}
{% if showcase.ouya %}<a href="{{ showcase.ouya }}" target="_blank">{% endif %}<span class="icon-ouya"></span>{% if showcase.ouya %}</a>{% endif %}
{% if showcase.playstation %}<a href="{{ showcase.playstation }}" target="_blank"><span class="icon-playstation"></span></a>{% endif %}
</p>
</div>
{% cycle '', '</div><hr />' %}
{% capture count %}{{ forloop.index }}{% endcapture %}
{% endif %}
{% endfor %}
{% capture remainder %}{{ count | modulo: 2 }}{% endcapture %}
{% if remainder != "0" %}
</div><hr />
{% endif %}
{% assign count = 0 %}
{% for showcase in site.data.showcase %}
{% unless showcase.featured %}
{% cycle '<div class="row">', '', '', '' %}
<div class="col-md-3 col-sm-6">
<h3 style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">{{ showcase.title }}</h3>
<p><a href="{{ showcase.url }}" target="_blank"><img src="{{ site.baseurl }}images/showcase/small/{{ showcase.image }}" style="width: 100%; max-width: 280px; margin: 0 auto;"/></a></p>
<p style="text-decoration: none !important; color: #dddddd; font-size: 14px;">
{% if showcase.windows %}<a href="{{ showcase.windows }}" target="_blank">{% endif %}<span class="icon-windows"></span>{% if showcase.windows %}</a>{% endif %}
{% if showcase.mac %}<a href="{{ showcase.mac }}" target="_blank">{% endif %}<span class="icon-apple"></span>{% if showcase.mac %}</a>{% endif %}
{% if showcase.linux %}<a href="{{ showcase.linux }}" target="_blank">{% endif %}<span class="icon-linux"></span>{% if showcase.linux %}</a>{% endif %}
{% if showcase.ios %}<a href="{{ showcase.ios }}" target="_blank">{% endif %}<span class="icon-apple"></span>{% if showcase.ios %}</a>{% endif %}
{% if showcase.android %}<a href="{{ showcase.android }}" target="_blank">{% endif %}<span class="icon-android"></span>{% if showcase.android %}</a>{% endif %}
{% if showcase.blackberry %}<a href="{{ showcase.blackberry }}" target="_blank">{% endif %}<span class="icon-blackberry"></span>{% if showcase.blackberry %}</a>{% endif %}
{% if showcase.firefoxos %}<a href="{{ showcase.firefoxos }}" target="_blank">{% endif %}<span class="icon-firefox"></span>{% if showcase.firefoxos %}</a>{% endif %}
{% if showcase.tizen %}<a href="{{ showcase.tizen }}" target="_blank">{% endif %}<span class="icon-tizen"></span>{% if showcase.tizen %}</a>{% endif %}
{% if showcase.amazon %}<a href="{{ showcase.amazon }}" target="_blank">{% endif %}<span class="icon-amazon"></span>{% if showcase.amazon %}</a>{% endif %}
{% if showcase.flash %}<a href="{{ showcase.flash }}" target="_blank">{% endif %}<span class="icon-flash"></span>{% if showcase.flash %}</a>{% endif %}
{% if showcase.html5 %}<a href="{{ showcase.html5 }}" target="_blank">{% endif %}<span class="icon-html5"></span>{% if showcase.html5 %}</a>{% endif %}
{% if showcase.ouya %}<a href="{{ showcase.ouya }}" target="_blank">{% endif %}<span class="icon-ouya"></span>{% if showcase.ouya %}</a>{% endif %}
{% if showcase.playstation %}<a href="{{ showcase.playstation }}" target="_blank"><span class="icon-playstation"></span></a>{% endif %}
</p>
</div>
{% cycle '', '', '', '</div><hr />' %}
{% capture count %}{{ forloop.index }}{% endcapture %}
{% endunless %}
{% endfor %}
{% capture remainder %}{{ count | modulo: 2 }}{% endcapture %}
{% if remainder != "0" %}
</div><hr />
{% endif %}