-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogramme_new.html
115 lines (95 loc) · 2.78 KB
/
programme_new.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
---
layout: default
---
<div id="index-banner" class="parallax-container">
<div class="section no-pad-bot">
<div class="container">
<br><br>
<h1 class="header center orange-text text-lighten-2">Programma</h1>
<!-- <div class="row center">
<h5 class="header col s12 light white-text">the programme of the event</h5>
</div> -->
<div class="row center">
<a href="{{site.url}}/files/PROGRAMMA.pdf" id="download-button" class="btn-large waves-effect waves-light teal lighten-1">Scarica PDF</a>
<!-- <a href="{{site.url}}/files/program_talks_second_edition.pdf" id="download-button" class="btn-large waves-effect waves-light teal lighten-1">Trento talk abstracts</a> -->
<br>
</div>
<br><br>
</div>
</div>
<div class="parallax"><img src="{{site.url}}/img/picchi.svg"></div>
</div>
<div class="container">
<div class="post">
<article class="post-content">
<div class="section">
<h2>Informazioni generali</h2>
<p>
{{ site.data.programme.info }}
</p>
</div>
<div class="section">
<h2>Programma dettagliato</h2>
<div class="row">
<div class="col s12">
<ul class="tabs">
{% for item in site.data.programme.schedule %}
<li class="tab col m3 s12" style="width: 20%;"><a class="orange-text" href="#{{ item.date }}">{{ item.day }}</a></li>
{% endfor %}
<div class="indicator orange" style="z-index:1"></div>
</ul>
</div>
{% for item in site.data.programme.schedule %}
<div id="{{item.date}}" class="col s12">
<br>
<h5>{{ item.day_ex }}</h5>
<table>
<thread>
<tr>
<th data-field="time">Orario</th>
<th data-field="what"></th>
<th data-field="where">Dove</th>
</tr>
</thread>
<tbody>
{% for act in item.activity %}
<tr>
<td>{{ act.hour }}</td>
<td>{{ act.descr }}</td>
<td>{{ act.where }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endfor %}
</div>
</div>
<div class="section">
<h2>Partecipation fee and requirements</h2>
<p>{{ site.data.programme.few_info.info }}<p>
<ul class="collection">
{% for item in site.data.programme.few_info.specs %}
<li
{% if item.url contains "http://" %}
href="{{ item.url }}"
{% else %}
href="{{ site.url }}/{{ item.url }}"
{% endif %}
class="collection-item black-text">
{{ item.text }}
{% if item.url != "#!" %}
<span class="badge custom1 white-text">{{ item.button }}</span>
{% endif %}
</li>
{% for item2 in item.subpoints %}
<li class="collection-item black-text custom1 lighten-5">
{{ item2.text }}
</li>
{% endfor %}
{% endfor %}
</ul>
</div>
</article>
</div>
</div>