-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathblog.html
30 lines (28 loc) · 822 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: default
title: Blog
---
{% for post in site.posts limit: 15 %}
<div class="post">
<div align="right" style="float: right" class="date-container">{{ post.date | date:"%e.%m.%Y" | upcase }}</div>
<h3>
<span>
<a href="{{ post.url }}"
title="Link to '{{post.title }}'">{{ post.title }}</a>
</span>
</h3>
<blockquote>
<p>
{{ post.content }}
</p>
<!--<span class="author">{{ post.author }}</span>-->
<small>{{ post.author }}
{% if post.www %}
<a href="http://{{ post.www }}"><span class="glyphicon glyphicon-globe"></span></a>
{% endif %}
</small>
</blockquote>
</div>
{% if forloop.last == false %}
{% endif %}
{% endfor %}