-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathevent.html
24 lines (20 loc) · 912 Bytes
/
event.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
---
title: Civic Tech Events
permalink: "/events/"
layout: page
type: inNavBar
---
<h1 class="t-section-headline">Civic Tech Events</h1>
<div class="centered">
<section>
<p>Know about an event that isn't listed here? <a href="mailto:[email protected]" Subject="Please Add This Event!"> Send us the event link</a> or <a href="https://github.com/codeforboston/codeforboston.org/blob/master/_data/events/active.yml">add it yourself</a>.</p>
<br>
{% for event in site.data.events.active %}
<div itemscope itemtype="http://schema.org/Event">
<h3><a href="{{event.url}}"><span itemprop="name" >{{ event.name }}</span>- <span itemprop="startDate">{{ event.date }}</span></a></h3>
<p><i itemprop="location">{{ event.location }}</i></p>
<p itemprop="description">{{ event.description | markdownify }}</p><br>
</div>
{% endfor %}
</section>
</div>