forked from ffnord/startseite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
30 lines (29 loc) · 853 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
---
layout: base
---
<div class="heading">
<div class="row">
<div class="twelve columns">
<h1>Blog</h1>
</div>
</div>
</div>
<div class="row">
<div class="twelve columns">
{% for post in site.posts %}
<div class="panel">
{% if forloop.index0 == 10 %}
<p><a href="/blog-archive.html">… zum Blog-Archiv</a></p>
</div>
{% break %}
{% endif %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p class="postdate"><em>{{ post.date | localize: "%d. %B %Y" }}</em></p>
<p>{{ post.excerpt | strip_html }}
<br/>
<a href="{{ post.url }}">mehr..</a>
</p>
</div>
{% endfor %}
</div>
</div>