-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (141 loc) · 4.52 KB
/
index.html
File metadata and controls
169 lines (141 loc) · 4.52 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{% extends 'base.html' %}
{% block content %}
<div class="box-intro">
<h1>
<img src="{{ SITEURL }}/theme/assets/logo/logo-white.svg"
alt="PyConES Canarias 2023" >
</h1>
<div cass="intro">
<p>
Welcome to PyConES, the most important Python conference in Spain.
An event that will bring together hundreds of enthusiasts of the Python
programming language, with an incredible agenda in the best possible
location.
</p>
<p>
If you want to be part of our sponsors to make this conference even more
impressive, you can have your own space within the event.
</p>
<span class="big-text">
October 6th, 7th and 8th
</span>
</div>
</div>
<h2 class="subtitle">Keynoters</h2>
{% for item in KEYNOTERS %}
<div class="keynoter">
<div class="keynoter__img">
<img src="{{ SITEURL }}{{ item['image'] }}" alt="">
</div>
<div class="keynoter__content">
<h2>{{item['name']}}</h2>
<p>{{item['description']['en']}}</p>
<div class="social"><a href="{{ item.twitter }}" target="_blank" class="fa fa-twitter"></a></div>
</div>
<div class="keynoter__pagination"></div>
</div>
{% endfor %}
<h2 class="subtitle">News</h2>
{% for noticia in NOTICIAS %}
<div class="news-box">
<h3 class="news-title">{{ noticia['en'].titulo }} <span>{{ noticia['en'].fecha }}</span></h3>
<p class="news-content">
{{ noticia['en'].contenido }}
</p>
</div>
{% endfor %}
<h2 class="subtitle">Event schedule</h2>
<p>
Below you will see some of the most important milestones of the conference.
In case the exact date is not available, it will be confirmed as soon as we
can.
</p>
<div class="linea-tiempo center">
{% for item in CRONOGRAMA %}
<div class="momento">
<h3 class="momento-date">{{ item['fecha'] }}</h3>
<div class="descripcion">
{{ item['desc'] }}
</div>
</div>
{% endfor %}
</div>
<div class="sponsors">
<h1 class="subtitle">Sponsors</h1>
<p>
Thanks to the companies that collaborate with PyConES we can offer the best
possible event and experience. We are a conference with a low cost of entry
able to offer a 3 day experience including gifts, lunches, meals and snacks.
With the help of these companies we managed to make a diverse and inclusive
event focused on taking care of the Python community.
</p>
{% for level, sponsors in SPONSORS.items() %}
{% if sponsors %}
<div class="title-badge">
<img src="{{ SITEURL }}/theme/assets/badges/{{ level }}.png"> Nivel {{ level | title }}
</div>
<div class="{{ level }}-grid">
{% for name, values in sponsors.items() %}
<div class="card">
<a href={{ values['url'] }}>
<figure class="sponsor-figure">
<img src="{{ SITEURL }}{{ values['logo'] }}" alt="Logo {{ name }}" />
</figure>
</a>
</div>
{% endfor %}
</div>
{% endif %}
{% endfor %}
<div class="title-badge">
<span style="font-size: 1.5em;">🏫</span> Special sponsor
</div>
<div class="special-grid">
<!-- ULL -->
<div class="card">
<a href="https://www.ull.es/en/">
<figure class="sponsor-figure venue">
<img src="{{ SITEURL }}/theme/assets/images/sponsors/logo_ull.png" alt="Logo ULL" />
</figure>
</a>
</div>
<!-- Eventbrite -->
<div class="card">
<a href="https://www.eventbrite.es">
<figure class="sponsor-figure special">
<img src="{{ SITEURL }}/theme/assets/images/sponsors/logo_eventbrite.png" alt="Logo Eventbrite" />
</figure>
</a>
</div>
</div>
</div>
{% if ADDONS|length > 0 %}
<h1>Addons</h1>
<div class="addon-wrapper">
{% for items in ADDONS %}
<fieldset class="addons-content">
<legend class="addons-title">{{items.title.en}}</legend>
<div class="addon-image">
<img src="{{ SITEURL }}{{items.image}}"
alt="coffee" width="50" height="50">
</div>
<div class="addon-text">
{{items.description.en}}
</div>
{% for sponsors in items.sponsors %}
<div class="addon-sponsors">
<div class="card">
<a href="{{sponsors.url}}">
<figure class="sponsor-figure special">
<img src="{{ SITEURL }}{{sponsors.logo}}" alt="Logo Eventbrite" />
</figure>
</a>
</div>
</div>
{% endfor %}
</fieldset>
{% endfor %}
</div>
{% endif %}
</div>
{% endblock content %}