- Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathtraining.html
18 lines (15 loc) · 531 Bytes
/
training.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: inner-page-parent
---
{% capture now %}{{site.time | date: '%s' | plus: 0}}{% endcapture %}
{% assign upcomingTrainings = '' | split: ',' %}
{% for training in paginator.trainings %}
{% capture date %}{{training.when|date: '%s'|plus: 86400}}{% endcapture %}
{% if now <= date %}
{% assign upcomingTrainings = upcomingTrainings | push: training %}
{% endif %}
{% endfor %}
{% include events-training-list-top.html collection=upcomingTrainings %}
</div>
{% include paginator.html urlPath="training" %}
</div>