bulma/docs/blog.html

34 lines
1002 B
HTML
Raw Normal View History

---
layout: default
route: blog
---
{% include blog-hero.html %}
2018-03-29 21:25:55 +00:00
<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>
2017-08-03 19:29:09 +00:00
</span>
2018-03-29 21:25:55 +00:00
</strong>
</a>
</article>
{% endfor %}
</div>
2018-03-29 21:25:55 +00:00
</div>
</section>