-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresources.html
72 lines (65 loc) · 1.88 KB
/
resources.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
---
layout: page
title: titles.resources
namespace: resources
permalink: /resources/
permalink_fr: /ressources/
category: resources
---
{% tf resources/content.md %}
<nav class="tabs is-centered">
<ul>
{% for category in site.data.resources_categories %}
<li><a href="#{{ category }}">{% t resources.categories.{{ category }} %}</a></li>
{% endfor %}
</ul>
</nav>
<div class="columns is-multiline">
{% for app in site.data.resources %}
<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/resources/{{ 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 resources/{{ app.id }}.md %}
</div>
</div>
<div class="card-footer">
<a href="{{ app.link }}" class="card-footer-item">
{% t resources.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>