-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
61 lines (56 loc) · 2.93 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
---
layout: base
title: TransportationCamp
---
{% assign events = site.data.events | sort: 'date' %}
{% assign cur_year = "now" | date: "%Y" | to_integer %}
{% assign upcoming_events = events | where_exp: 'item', 'item.date >= site.time' %}
{% assign this_year = events | where_exp: 'item', 'item.year == cur_year' | where_exp: 'item', 'item.date < site.time' %}
<div>
{% if upcoming_events.size > 0 %}
{% for event in upcoming_events %}
{% include event_full.html event = event %}
{% endfor %}
<!-- This is tag only ever gets rendered once and is closed below - ignore IDE error checks -->
<div class="body">
{% else %}
<!-- This is tag only ever gets rendered once and is closed below - ignore IDE error checks -->
<div class="body">
<h1>Upcoming Camps</h1>
<h4>There are no upcoming TransportationCamp events at this time.</h4>
{% endif %}
{% if this_year.size > 0 %}
<h1 class="home-section">Recent Camps</h1>
<div class="event-list">
{% for event in this_year reversed %}
{% include event_card.html event = event %}
{% endfor %}
</div>
{% endif %}
<div class="container">
<h1 class="home-section">About</h1>
<h4>TransportationCamp brings together thinkers and doers in the fields of transportation &
technology.</h4>
<p>TransportationCamp is a series of decentralized unconferences held throughout the world, where people of
all backgrounds meet to discuss transportation-related topics. Each one is organized independently by
their own local organizing committee, and may be held in conjunction with a larger conference or
event.</p>
<p>Attendees include students, young and experienced professionals, and community leaders from a wide range
of backgrounds—including transportation planning, technology, innovation, and policy.</p>
<p><strong>First time attendee?</strong> <a href="about/how-it-works">Learn more about how a
TransportationCamp works.</a></p>
<p><strong>Want to set up a camp of your own?</strong> For hints and tips, chat with other organizers on <a
href="https://transportationcamp.slack.com/">our shared Slack channel</a>.</p>
<div>
<a href="https://twitter.com/TranspoCamp?ref_src=twsrc%5Etfw" class="twitter-follow-button"
data-size="large"
data-dnt="true" data-show-count="false">Follow @TranspoCamp</a>
<a href="https://www.linkedin.com/groups/8424118/">
<img class="footer-img" src="assets/images/linkedin.png"
alt="LinkedIn logo">
</a>
</div>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>