forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
28 lines (26 loc) · 922 Bytes
/
Copy pathblog.html
File metadata and controls
28 lines (26 loc) · 922 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
---
layout: default
title: Blog
permalink: /blog/
icon: fa-align-justify
page-index: 3
---
<div id="blog" class="row">
<div class="col-md-12">
<div class="content-area page">
<h1>Blog Posts</h1>
<div class="post-list-body">
{% for post in site.posts %}
<a class="list-item" href="{{ post.url | prepend: site.baseurl }}">
<div class="float-right">
<h5 class="blog-index-author"><span class="fa fa-user"></span> {{ site.data.people[post.author].name }}</h5>
<h5 class="blog-index-date"><span class="fa fa-clock-o"></span> {{ post.date | date_to_string }}</h5>
</div>
<h2>{{ post.title }}</h2>
<div> {{ post.excerpt }}</div>
</a>
{% endfor %}
</div>
</div>
</div>
</div>