-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
35 lines (32 loc) · 922 Bytes
/
news.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
---
title: Qi4j News
layout: default
---
<div class="page-header">
<h1>Qi4j News</h1>
<p class="lead"><a href="atom.xml"><i class="icon-rss"></i> Atom Feed</a></p>
</div>
<div class="row-fluid">
<div class="span2"></div>
<div class="span8">
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Title</th>
</tr>
</thead>
<tbody>
{% for post in site.posts %}
<tr>
<td>{{ post.date | date: "%B %e, %Y" }}</td>
<td><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
<hr/>
<p><a href="atom.xml"><i class="icon-rss"></i> Atom Feed</a></p>
</div>
<div class="span2"></div>
</div>