forked from py-cu/py-cu.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
31 lines (30 loc) · 706 Bytes
/
events.html
File metadata and controls
31 lines (30 loc) · 706 Bytes
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
---
layout: default
---
<div class="row-fluid">
<img src="img/py-cu-logo.png">
</div>
<div class="row-fluid">
<div class="span2">
<h4> Upcoming </h4>
<ul>
{% for post in site.posts limit:1 %}
<li>
{{post.date | date:"%B %d, %Y" }}: <a href="{{ post.url }}">{{ post.title}} </a>
</li>
{% endfor %}
</ul>
<h4>Past Events</h4>
<ul>
{% for post in site.posts offset:1 %}
<li> <a href="{{post.url}}"> {{ post.date | date:"%B %d, %Y" }}</a></li>
{% endfor %}
</ul>
</div>
<div class="span8">
{% for post in site.posts limit:1 %}
<h3 class="shead">{{post.title}}</h3>
{{ post.content }}
{% endfor %}
</div>
</div>