-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.html
45 lines (41 loc) · 1.01 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
45
---
layout: default
title: Blog
---
<style>
body {
background-color: #fafafa;
}
</style>
<div class="jumbotron">
<div class="container">
<h1>Blog</h1>
<p>Changelogs and news from the Flood project.</p>
<a class="btn btn-primary" href="{{ site.baseurl }}/feed.xml"
>{% include svg/rss_feed.svg %} RSS Feed</a
>
</div>
</div>
<div class="container post">
{% for post in site.categories.blog %}
<div class="card">
<div class="card-body">
<h6>{{ post.excerpt }}</h6>
<h2 class="card-title">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h2>
<p class="card-text">
{% include svg/clock.svg %} {{ post.date | date: '%B %d, %Y' }}{% if
post.author %} {% include svg/author.svg %} {{ post.author }}{% endif %}
</p>
</div>
<div class="card-button">
<a
href="{{ site.baseurl }}{{ post.url }}"
class="btn btn-link text-primary"
>Read More</a
>
</div>
</div>
{% endfor %}
</div>