-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogs.html
36 lines (35 loc) · 970 Bytes
/
blogs.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
---
layout: default
title: Blogs
permalink: /blogs/
page_name: blogs
---
<div class="blogs-page page-margin">
<h1 class="text-center">Blogs</h1>
<div class="container">
<div class="row">
<div class="col-md-12">
{% for post in site.posts %}
<div class="post-area">
<h2>
<a href="{{ post.url | prepend: site.baseurl }}" class="bold">{{ post.title }}</a>
</h2>
<p class="post-date">{{ post.date | date_to_long_string }}
{% include read-time.html
content=post.content
bracket_start='('
bracket_end=')'
unit='min'
approx='true'
caption='read'
%}
</p>
<p>
{{ post.content | strip_html | truncatewords: 50 }}
</p>
</div>
{% endfor %}
</div>
</div>
</div>
</div>