forked from k9mail/k9mail.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
36 lines (30 loc) · 1.14 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
---
layout: page
title: Blog
---
<!-- Top Header Section -->
<div class="container-fluid background-teal">
<div class="container py-3">
<h1 class="text-slate">Blog</h1>
</div>
</div>
<div class="container-fluid">
<div id="posts" class="container py-3">
<div class="row py-5">
{% for post in site.posts %}
<div class="col-12 col-md-4 mb-3 mb-md-2">
<a href="{{ post.url | replace:'.html','' }}">
<div class="card shadow-sm"><img class="w-100" src="{{ post.image }}" alt="Blogpost image" />
<div class="card-body">
<h3 class="text-slate"><strong>{{ post.title }}</strong></h3>
<p class="text-muted">Posted on {{ post.date | date: "%b %-d, %Y" }}</p>
<p class="mb-3">{{ post.excerpt | truncatewords: 15 }}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>