forked from twitter/opensource-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
44 lines (38 loc) · 1.3 KB
/
contact.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
---
layout: default
title: contact | MediaFutures
description: MediaFutures contact
keywords: mediafutures,contact
url: https://mediafutureseu.github.io/contact
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">Training</h1>
<h5 class="squad-subheading">ⓘ This is a brief description of training courses and activities provided by Mediafutures mentors during the Open Calls.</h5>
</div>
</div>
</div>
<div class="section">
<div class="Grid dataset-container container">
{% for item in site.data.training %}
<div class="Grid-cell sizeFull dataset">
<div>
<h2>{{ item["name"] }}</h2>
<h3>{{ item["type"] }}</h3>
<br/>
{{ item["description"] }}
<br/><br/>
<b>Courses may include:</b> {{ item["courses"] }}
<br/>
<b>Providers:</b> {{ item["providers"] }}
</div>
{% if item["url"] %}
<button onclick="window.open('{{ item["url"] }}')" type="button" class="Button">View</button>
{% endif %}
</div>
{% endfor %}
</div>
</div>