-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBlog.html
More file actions
31 lines (23 loc) · 757 Bytes
/
Blog.html
File metadata and controls
31 lines (23 loc) · 757 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
---
layout: default
---
<div class="row">
<div class="col-md-12">
<h1>Posts</h1>
<ul class="list-unstyled">
{% for post in site.posts %}
<li>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
{{ post.excerpt }}
<div class="clearfix">
<span class="text-muted pull-left">{{ post.date | date: "%Y-%m-%d" }}</span>
<span class="pull-right"><a class="small" href="{{ post.url | prepend: site.baseurl }}">more</a></span>
</div>
<hr />
</li>
{% endfor %}
</ul>
</div>
</div>