-
Notifications
You must be signed in to change notification settings - Fork 1
/
implementations.html
45 lines (45 loc) · 1.18 KB
/
implementations.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
---
layout: empty
title: Implementations
subtitle: All libraries / applications / demos of which we're aware
---
{% include header.html %}
<main class="cards">
{% for impl in site.data.implementations %}
<article>
<header>
<h2>
{% if impl.official %}
<span class="tag is-primary">Official</span>
{% endif %}
{{impl.title}}
</h2>
<p>
{{impl.description}}
</p>
</header>
<section>
<h3>Maintainers</h3>
<ul>
{% for maintainer in impl.maintainers %}
<li>{{maintainer.name}}</li>
{% endfor %}
</ul>
</section>
<section>
<h3>License</h3>
<p>{{impl.license}}</p>
</section>
<footer>
{% for link in impl.links %}
<a href="{{link.url}}">
{% if link.icon %}
{% include feather.html icon=link.icon %}
{% endif %}
{{link.title}}
</a>
{% endfor %}
</footer>
</article>
{% endfor %}
</main>