forked from tingbot/ocean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (57 loc) · 1.64 KB
/
index.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
---
layout: default
---
<div class="home">
<ul class="cards-list">
{% for app in site.data.apps %}
<li class="card">
<div class="card-background" style="background-color: #{{ app.background_color }}">
<img class="card-icon" src="{{ app.icon }}" />
<h2 class="card-title">
{{ app.name }}
</h2>
<div class="card-creator">
by {{ app.creator }}
</div>
<div class="card-bottom-right">
<div class="card-version">
{{ app.version }}
</div>
<div class="card-date">
{{ app.modified_date }}
</div>
</div>
</div>
<ul class="card-links" style="color: #{{ app.background_color }}">
{% if app.screenshot_url %}
<li>
<a href="{{ app.screenshot_url }}" >
<svg viewBox="0 0 22 22">
<use xlink:href="#icon-camera"></use>
</svg>
</a>
</li>
{% endif %}
{% if app.zip_url %}
<li>
<a href="{{ app.zip_url }}">
<svg viewBox="0 0 22 22">
<use xlink:href="#icon-download"></use>
</svg>
</a>
</li>
{% endif %}
{% if app.github_url %}
<li>
<a href="{{ app.github_url }}">
<svg viewBox="0 0 22 22">
<use xlink:href="#icon-github"></use>
</svg>
</a>
</li>
{% endif %}
</ul>
</li>
{% endfor %}
</ul>
</div>