1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-02 00:05:37 +01:00
site/_src/_includes/sections/section-blog.html

26 lines
954 B
HTML
Raw Normal View History

2017-05-23 21:55:10 +02:00
<section class="section section--blog ">
<div class="row row--wide">
<header class="section-header">
<h1 class="section-title">Hot off the blog</h1>
</header>
2017-05-23 21:55:10 +02:00
<div class="grid grid--full grid-small--half grid-medium--third grid--gutters">
{% for article in site.articles | limit: 6 %}
<div class="grid__col">
2017-05-23 21:55:10 +02:00
<a class="article article--{{ article.title | downcase | truncatewords: 3, '' | replace: ' ', '-' }}" href="{{ article.link }}" style="background-image: url('{{ article.image }}')">
<h1 class="article__title">
{{ article.title }}
</h1>
</a>
</div>
{% endfor %}
</div>
2017-05-23 21:55:10 +02:00
<p class="text-center">
<a class="btn btn-secondary btn-sm" href="{{ site.blog }}">Go to blog</a>
</p>
</div>
</section>