forked from twitter/opensource-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
toolsopencall.html
57 lines (50 loc) · 1.7 KB
/
toolsopencall.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
---
layout: default
title: Assets | MediaFutures
description: MediaFutures Assets
keywords: mediafutures, assets
url: https://mediafutureseu.github.io/toolsopencall
custom_css: list.css
custom_js: list.js
---
<div class="header squad-header">
<div class="Grid container">
<div id="header-text" class="Grid-cell">
<h1 class="large-title">Assets</h1>
<h1 class="squad-subheading">Selection of assets applied in MediaFutures projects</h1>
</div>
</div>
</div>
<div class="section">
<div class="Grid dataset-container container">
{% for item in site.data.toolsopencall %}
<div class="Grid-cell sizeFull dataset">
<div>
<h2>{{ item["name"] }}</h2>
<h3>{{ item["subtitle"] }}</h3>
<br/>
{{ item["description"] }}
<br/>
<div class="projects">
{% if item["projects"] %}
<br/>
<h3>Applied in: {{ item["projects"] }}</h3>
{% endif %}
</div>
<div class="software">
{% if item["software"] %}
<br/>
<h4>{{ item["software"] }}</h4>
{% endif %}
</div>
{% if item["open_software"] != '' %}
<h4>Open source alternative: {{ item["open_software"] }}</h4>
{% endif %}
</div>
{% if item["url"] %}
<button onclick="window.open('{{ item["url"] }}', '_parent')" type="button" class="Button">Go to Tool</button>
{% endif %}
</div>
{% endfor %}
</div>
</div>