-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
53 lines (46 loc) · 1.91 KB
/
index.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
---
layout: default
title: Conférences et échanges entre toulousains qui font du Web
description: >-
L'objectif est de réunir différentes disciplines pour forger une culture
commune
---
<a name="next-edition"></a>
<header class="next-edition__header">
{% assign edition = site.data.editions | last %}
<h1 class="next-edition__next lead">{% include date_fr.html date=edition.date %}</h1>
{% if edition.description %}
<div class="next-edition__description">
{{ edition.description | markdownify }}
</div>
{% endif %}
{% if edition.talks %}
{% for talk in edition.talks %}
<h1 class="next-edition__title">{{ talk["title"] | default: "Sujet en cours de préparation" }}</h1>
{% if talk["speaker"] != "" %}
<h3 class="next-edition__speaker">animé par <a href="{{ talk["speaker_url"] }}">{{ talk["speaker"] }}</a>
{% if talk["position"] != "" %}, {{ talk["position"] }}</h3>{% endif %}
{% endif %}
{{ talk["description"] | markdownify }}
{% endfor %}
{% endif %}
{% if edition.image %}
<figure class="next-edition_image lead">
<a href="{{ edition.link }}"><img src="{{ edition.image }}" alt=""></a>
</figure>
{% endif %}
{% if edition.venue %}
<div class="next-edition__venue">
{% assign venue = site.data.venues[edition.venue] %}
<p>Rendez-vous à partir de 19h30.</p>
<p>{% if venue.url %}<a href="{{ venue.url }}">{% endif %}{{ venue.name }}{% if venue.url %}</a>, {% endif %}{{ venue.address }}</p>
{% if venue.metro %}<p>Métro : {{ venue.metro }}</p>{% endif %}
</div>
{% endif %}
{% if edition.register %}
<div id="register" class="lead">
<p><em>Gratuit et ouvert à tous</em></p>
<p><a href="{{ edition.register }}" class="btn complementary" ga-on="click" ga-event-category="call-to-action" ga-event-action="register">Signalez votre présence</a></p>
</div>
{% endif %}
</header>