forked from ruby-conferences/ruby-conferences.github.io
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (18 loc) · 536 Bytes
/
index.html
File metadata and controls
20 lines (18 loc) · 536 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
---
<article id="home">
<dl>
{% assign now = site.time | date: '%s' | plus: 0 %}
{% assign today = site.time | date: '%Y-%m-%d' %}
{% assign conferences = site.data.conferences | sort: "start_date" %}
{% assign item_name = "conference" %}
{% include filters.html %}
{% for event in conferences %}
{% assign start_date = event.start_date | date: '%s' | plus: 0 %}
{% if start_date > now %}
{% include event.html %}
{% endif %}
{% endfor %}
</dl>
</article>