bulma/docs/blog.html

34 lines
1005 B
HTML
Raw Normal View History

---
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">
2017-08-03 19:29:09 +00:00
<i class="fa fa-{{ post.icon }}"></i>
</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>
</div>
</section>