-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
executable file
·42 lines (39 loc) · 1022 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
31
32
33
34
35
36
37
38
39
40
41
---
layout: default
title: Blog
section_id: blog
---
<h3 class = "underline orange-text"><u>Blog Posts</u></h3>
<div class = "row">
{% for post in site.posts %}
<div id = "post" class = "col left s12 m9 l9">
<h4 class = "post-title left">
<a href='{{post.url}}'>{{ post.title }}</a>
</h4>
<div style = "margin-bottom:25px;" class='post-content'>
{{post.excerpt}}
<a class='btn waves-effect waves-light' href='{{post.url}}'>Read more</a>
</div>
<div class = "divider"></div>
</div>
<div id = "info" class = "col right s12 m3 l3">
<div style = "border:1px solid #ccc;padding:7px;">
<p>
On -
<span class='month'>{{ post.date | date: "%h" }}</span>
<span class='date'>{{ post.date | date: "%d" }},</span>
<span class='date'> 2015{{ post.year | date: "%d" }}</span>
</p>
<p>
By -
<a href = "#">
<span class='author'>{{post.author}}</span>
</a>
</p>
<p>
Reading Time: {{post.reading_time}}
</p>
</div>
</div>
{% endfor %}
</div>