forked from npatarino/tech-conferences-spain
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpast.html
27 lines (25 loc) · 778 Bytes
/
past.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
---
layout: default
title: Past
---
<ul class="conference-list list-unstyled">
{% assign sorted_conferences = (site.conferences | sort: 'date_start' | reverse) %}
{% assign today = (site.time | date: "%s" ) %}
{% for conference in sorted_conferences %}
{% assign date_end = (conference.date_end | date: "%s") %}
{% if today >= date_end %}
<li>
{{ conference.date_start | date: "%Y-%m-%d" }}
<a class="post-link" href="{{ conference.website }}">{{ conference.name }}</a>
{% if conference.location %}
<small>{{ conference.location }}</small>
{% endif %}
<script>
{% if conference.meetup %}
document.write('<span class="label label-warning">Meetup</span>');
{% endif %}
</script>
</li>
{% endif %}
{% endfor %}
</ul>