-
Notifications
You must be signed in to change notification settings - Fork 3
/
software.html
47 lines (42 loc) · 1.04 KB
/
software.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
---
layout: page
title: Software
permalink: /software
---
{% for sw in site.data.software %}
<div class="element-wrap">
<div class="element-name">{{ sw.name }}</div> –
<div class="element-text">{{ sw.tag_line }}</div>
{% if sw.author %}
<div class="element-subtext">
Written by {{ sw.author }}
</div>
{% endif %}
<div class="element-links">
{% if sw.source_URL %}
<a href="{{ sw.source_URL }}">
<span class="mdi mdi-open-in-new"> </span>
Source
</a><br />
{% endif %}
{% if sw.CRAN_URL %}
<a href="{{ sw.CRAN_URL }}">
<span class="mdi mdi-language-r"> </span>
CRAN
</a><br />
{% endif %}
{% if sw.PyPI_URL %}
<a href="{{ sw.PyPI_URL }}">
<span class="mdi mdi-language-python"> </span>
PyPI
</a><br />
{% endif %}
{% if sw.paper_URL %}
<a href="{{ sw.paper_URL }}">
<span class="mdi mdi-text-box"> </span>
Paper
</a>
{% endif %}
</div>
</div>
{% endfor %}