-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (63 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
---
<div class="section-container section-main">
{% capture description %}{% include description.md %}{% endcapture %}
{{ description | markdownify }}
<div class="newsletter">
{% include _html/newsletter.html %}
</div>
</div>
<!--
<div class="section-container">
<h2>News</h2>
{% for post in site.posts limit: 2 %}
<div class="item-container">
<img class="item-image"
src="{{ site.baseurl }}{{ post.image }}"
alt="Accompanying image for news '{{ post.title }}'">
<div class="item-info">
<span class="item-date">{{ post.date | date: "%-d %B %Y" }}</span>
<span class="item-title">{{ post.title }}</span>
<div class="item-description">{{ post.excerpt | markdownify }}</div>
{% unless post.short %}
<a class="item-link"
href="{{ post.url }}">Read more...</a>
{% endunless %}
</div>
</div>
{% endfor %}
<a class="section-link"
href="{{ site.baseurl }}/news">More news...</a>
</div>
-->
<div class="section-container">
<h2>Events</h2>
{% capture events_info %}{% include events_info.md %}{% endcapture %}
{{ events_info | markdownify }}
{% assign sorted_events = site.events | sort: 'importance' %}
{% for event in sorted_events %}
<div class="item-container">
<img class="item-image"
src="{{ site.baseurl }}{{ event.image }}"
alt="Accompanying image for event {{ event.title }}">
<div class="item-info">
<span class="item-title">{{ event.title }}</span>
<div class="item-description">{{ event.summary | markdownify }}</div>
<a class="item-link"
href="{{ event.website }}">More info...</a>
</div>
</div>
{% endfor %}
</div>
<div class="section-container">
<h2>About us</h2>
<img class="img-large"
src="{{ site.baseurl }}/images/about-us.jpg"
alt="PolyProg group picture at HC2 2017">
<a class="section-link"
href="{{ site.baseurl }}/about">Learn more...</a>
</div>
<!-- EPFL requires this -->
<div class="section-container">
<a title="EPFL legal notice" href="http://mediacom.epfl.ch/disclaimer-en">EPFL legal notice</a>
</div>