forked from diethardsteiner/diethardsteiner.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
27 lines (20 loc) · 655 Bytes
/
list.html
File metadata and controls
27 lines (20 loc) · 655 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
---
layout: list
---
<div id="article">
<div class="article-title">Blog Posts</div>
<div class="post">
{% for post in site.posts %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<div>
{{ post.summary }}
</div>
<div>
<p class="meta"><small> <i class="fa fa-calendar-o"></i> {{ post.date | date: "%B %e, %Y" }} <a href="{{ site.url }}{{ post.url }}"></a>
</small>
</p> <hr/>
</div>
{% endfor %}
</div>
</div>