forked from ialisme/fed.ialis.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.html
75 lines (68 loc) · 1.95 KB
/
apps.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: page
title: titles.apps
namespace: apps
permalink: /apps/
permalink_fr: /applications/
category: apps
---
{% tf apps/content.md %}
<nav class="tabs is-centered">
<ul>
{% for platform in site.data.apps %}
<li><a href="#{{ platform.id }}">{% t apps.platforms.{{ platform.id }} %}</a></li>
{% endfor %}
</ul>
</nav>
{% for platform in site.data.apps %}
<h2 id="{{ platform.id }}">{% t apps.platforms.{{ platform.id }} %}</h2>
<div class="columns is-multiline">
{% for app in platform.apps %}
<div class="column is-one-third">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="/assets/images/apps/{{ app.id }}.png">
</figure>
</div>
<div class="media-content">
<p class="title is-4"><a href="{{ app.link }}" class="is-large">{{ app.name }}</a></p>
<div class="subtitle is-6">
{% for server in app.server %}
<a href="{% tl {{ server }} %}" >
<span class="tag is-grey">{% t titles.{{ server }} %}</span>
</a>
{% endfor %}
</div>
</div>
</div>
<div class="content">
{% tf apps/{{ app.id }}.md %}
</div>
</div>
<div class="card-footer">
<a href="{{ app.link }}" class="card-footer-item">
{% t apps.get %}
</a>
{% if app.pricing %}
<span class="card-footer-item">
<strong>{{ app.pricing }}</strong>
</span>
{% else %}
<span class="card-footer-item">
{% t global.free %}
</span>
{% endif %}
{% if app.source %}
<a href="{{ app.source }}" class="card-footer-item">
{% t global.opensource %}
</a>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}