-
Notifications
You must be signed in to change notification settings - Fork 6
/
blog.html
33 lines (31 loc) · 1.03 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
---
layout: default
route: blog
---
{% include blog-hero.html %}
<section class="section">
<div class="container">
<div class="columns is-multiline">
{% for post in site.posts %}
<article class="column is-4">
<a class="bd-article-image is-{{ post.color }}" href="{{ post.url }}">
<span class="bd-article-overlay"></span>
<span class="bd-article-icon">
<i class="{% if post.icon_brand %}fab{% else %}fas{% endif %} fa-{{ post.icon }}"></i>
</span>
<strong class="bd-article-info">
<span>
<time class="bd-article-date" datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date_to_string }}
</time>
<strong class="bd-article-title">
{{ post.name }}
</strong>
</span>
</strong>
</a>
</article>
{% endfor %}
</div>
</div>
</section>