-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathblog.html
44 lines (33 loc) · 798 Bytes
/
blog.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
36
37
38
39
40
41
42
43
44
---
layout: default
pageid: blog
title: Freifunk Köln, Bonn und Umgebung - Blog
---
<div class="main">
<div class="wrap">
</div>
<div class="wrap">
<div class="units-row units-split">
<div class="unit-100 unit-push-left content">
<h1 class="blockheader">Blog</h1>
{% for post in site.posts %}
<article>
<div class="row">
<div class="blogheader">
<span>
{{ post.author }}, {{ post.date | date: "%-d %B %Y" }}
</span>
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
</div>
{{ post.content | convert_header: 2 }}
</div>
</article>
{% if forloop.last == false %}
<div class="blockspacer">
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>