-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathecosystem-entry.html
More file actions
45 lines (40 loc) · 1.15 KB
/
ecosystem-entry.html
File metadata and controls
45 lines (40 loc) · 1.15 KB
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: page
---
<div class="ecosystemEntry">
<!-- TODO: this should probably be converted to an HTML5 <aside> -->
<div class="ecosystemDetailsBox">
<dl>
<dt>Developers</dt>
<dd class="ecosystemEntryDevelopers">{{ page.developers }}</dd>
<dt>Source code</dt>
<!-- TODO: extract GitHub links to make prettier -->
<dd class="ecosystemEntrySourceCode">
<a href="{{ page.source }}">{{ page.source }}</a>
</dd>
<dt>License</dt>
<dd class="ecosystemEntryLicense">
{{ page.license }}
</dd> <!-- TODO: link known licenses -->
<dt>Plugins</dt>
<dd class="ecosystemEntryPlugins">
<ul>
{% for category in site.ecosystem_catalog.categories %}
{% for plugin in page[category.name] %}
<li>{{ plugin.name }}</li>
{% endfor %}
{% endfor %}
</ul>
</dd>
</dl>
{{ page.summary | markdownify }}
</div>
<ul class="ecosystemCategoryTag">
{% for category in site.ecosystem_catalog.categories %}
{% if page[category.name] %}
<li>{{ category.label | upcase }}</li>
{% endif %}
{% endfor %}
</ul>
{{ page.content | markdownify }}
</div>