-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathevents.html
More file actions
34 lines (32 loc) · 1.03 KB
/
events.html
File metadata and controls
34 lines (32 loc) · 1.03 KB
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
---
layout: default
title: CoderCamp Hamilton, Ontario
icon: fa-code
tagline: Hamilton, Ontario
---
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1><i class="fa fa-calendar"></i> Past Events</h1>
</div>
</div>
</div>
</div>
<div class="container">
<div class="content">
<table class="table table-striped"><tbody>
{% for post in site.posts %}
<tr>
<td>
<div class="events-post"><a href="{{ post.url }}" title="More info on {{post.title}}"><i class="fa fa-code"></i> {{ post.title }}</a></div>
</td>
<td>
<div class="events-info"><i class="fa fa-calendar"></i> {{ post.date | date: "%b %-d, %Y" }}{% if post.time %} <i class="fa fa-clock-o"></i> {{ post.time }}{% endif %}<br />
<i class="fa fa-map-marker"></i> {{ post.location }}</div>
</td>
</tr>
{% endfor %}
</tbody></table>
</div>
</div>