-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnews.html
More file actions
39 lines (36 loc) · 812 Bytes
/
news.html
File metadata and controls
39 lines (36 loc) · 812 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
32
33
34
35
36
37
38
39
---
layout: default
title: Recent News
---
<div id="page">
<div id="page-header">
<div class="row">
<div class="span10 offset1">
<h2>{{ page.title }}</h2>
</div>
</div>
</div>
<div id="news">
{% for post in site.categories.news %}
<div class="news-header">
<div class="row">
<div class="span10 offset1">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</div>
</div>
</div>
<div class="news-publish-date">
<div class="row">
<div class="span10 offset1">
<h3>{{ post.date | date: "%d %B %Y" }}</h3>
</div>
</div>
</div>
<div class="row news-content">
<div class="span10 offset1">
{{ post.content }}
</div>
</div>
{% endfor %}
</div>
</div>