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

28 lines
1.0 KiB
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">The BigchainDB Blog</h1>
<p class="section-description">Updates, stories and ideas from the people behind BigchainDB.</p>
</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">
2017-06-23 14:05:10 +02:00
<a class="btn btn-secondary" href="{{ site.social.medium.url }}">Go to blog</a>
2017-05-23 21:55:10 +02:00
</p>
</div>
</section>