2016-09-11 11:00:49 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
route: blog
|
|
|
|
---
|
|
|
|
|
|
|
|
{% include blog-hero.html %}
|
|
|
|
|
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
2017-08-03 19:29:09 +00:00
|
|
|
<div class="columns is-multiline">
|
|
|
|
{% for post in site.posts %}
|
|
|
|
<article class="column is-4">
|
2017-08-14 11:44:24 +00:00
|
|
|
<a class="bd-article-image is-{{ post.color }}" href="{{ post.url }}">
|
|
|
|
<span class="bd-article-overlay"></span>
|
|
|
|
<span class="bd-article-icon">
|
2018-01-10 16:30:23 +00:00
|
|
|
<i class="{% if post.icon_brand %}fab{% else %}fas{% endif %} fa-{{ post.icon }}"></i>
|
2017-08-03 19:29:09 +00:00
|
|
|
</span>
|
2017-08-14 11:44:24 +00:00
|
|
|
<strong class="bd-article-info">
|
2017-08-03 19:29:09 +00:00
|
|
|
<span>
|
2017-08-14 11:44:24 +00:00
|
|
|
<time class="bd-article-date" datetime="{{ post.date | date_to_xmlschema }}">
|
2017-07-29 13:38:45 +00:00
|
|
|
{{ post.date | date_to_string }}
|
2017-08-03 19:29:09 +00:00
|
|
|
</time>
|
2017-08-14 11:44:24 +00:00
|
|
|
<strong class="bd-article-title">
|
2017-08-03 19:29:09 +00:00
|
|
|
{{ post.name }}
|
|
|
|
</strong>
|
|
|
|
</span>
|
|
|
|
</strong>
|
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2016-09-11 11:00:49 +00:00
|
|
|
</div>
|
|
|
|
</section>
|