-
Notifications
You must be signed in to change notification settings - Fork 3
/
events.html
34 lines (33 loc) · 1.01 KB
/
events.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
---
layout: home
title: _layouts
description: Code Salon
---
<div id="nav">
<ul>
<li><a href="/about/">About</a></li>
<li><a href="/courses/">Courses</a></li>
<li class="selected"><a href="/events/">Events</a></li>
<li><a href="mailto:hello@kitchentablecoders.com">Contact</a></li>
</ul>
</div>
<ul class="posts">
{% for post in site.posts %}
{% if post.upcoming and post.categories contains 'event' %}
<li class="article-link">
<date title="{{ post.date | date_to_xmlschema }}">
<span class="day-of-week">{{ post.date | date: '%A' }}</span>
<span class="month">{{ post.date | date: '%B' }}</span>
<span class="day">{{ post.date | date: '%d' }}</span>,
<span>@ Brooklyn, NY</span>
</date>
<div>
<a href="{{ post.url }}" class="h3">{{ post.title }}</a>
</div>
<p class="summary">
{{ post.summary }}
</p>
</li>
{% endif %}
{% endfor %}
</ul>