2017-11-15 11:52:00 +01:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
|
|
|
|
title: Guides
|
2017-11-17 16:18:44 +01:00
|
|
|
tagline: "These guides explain you how to get started and build apps with BigchainDB/IPDB"
|
2017-11-15 11:52:00 +01:00
|
|
|
---
|
|
|
|
|
2017-11-16 12:30:35 +01:00
|
|
|
<section class="section section--guides">
|
|
|
|
<div class="row row--wide">
|
|
|
|
<div class="grid grid--full grid-small--half grid--gutters">
|
|
|
|
{% for guide in site.guides %}
|
|
|
|
<div class="grid__col">
|
|
|
|
<article class="guide">
|
2017-11-17 16:45:20 +01:00
|
|
|
<a href="{{ guide.url }}" {% if guide.header %}style="background-image:url('./{{ guide.header }}')" {% endif %}>
|
2017-11-16 12:30:35 +01:00
|
|
|
<h1 class="guide__title">{{ guide.title }}</h1>
|
2017-11-17 16:18:44 +01:00
|
|
|
<p class="guide__tagline">{{ guide.tagline }}</p>
|
2017-11-16 12:30:35 +01:00
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2017-11-15 11:52:00 +01:00
|
|
|
</div>
|
2017-11-17 12:21:07 +01:00
|
|
|
</section>
|