-
Notifications
You must be signed in to change notification settings - Fork 7
/
blog.html
44 lines (39 loc) · 1.57 KB
/
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
42
43
44
---
title: Blog
---
<div class="container mb-5 mt-3 mt-md-5">
<div class="row">
{% for post in site.posts %}
<a href="{{post.url | relative_url}}" style="text-decoration: none;color:black">
<div class="row mb-4">
<div class="col-md-7 col-12" style="border-right: 1px solid #00788A">
<h3>
{% if post.short_title %}
{{post.short_title}}
{% else %}
{{post.title}}
{% endif %}
</h3>
<span class="text-muted">{{post.date | date: "%-d %B %Y" }}</span>
<span class="text-muted ps-2">
{% if post.read_time != "" %}
{{post.read_time}} min
{% else %}
{% assign words = post.content | number_of_words %}
{% if words < 360 %}
1 min
{% else %}
{{ words | divided_by:180 }} mins
{% endif %}
{% endif %}
read
</span>
</div>
<div class="col-md-5 col-12 farama-blog-post__excerpt">
{{ post.excerpt | strip_html }}
</div>
</div>
</a>
{% endfor %}
</div>
</div>