2017-11-17 12:21:07 +01:00
|
|
|
<section class="section section--guides">
|
|
|
|
<div class="row">
|
|
|
|
<header class="section-header">
|
2018-03-13 09:47:20 +01:00
|
|
|
<h1 class="section-title">The Hitchhiker's Guide to BigchainDB</h1>
|
|
|
|
<p class="section-description">Complete the guide to learn about how to create apps in BigchainDB.</p>
|
2017-11-17 12:21:07 +01:00
|
|
|
</header>
|
|
|
|
</div>
|
2017-11-22 13:57:03 +01:00
|
|
|
|
2018-03-20 14:21:15 +01:00
|
|
|
<div class="row row--wide">
|
2018-04-06 14:20:07 +02:00
|
|
|
<div class="grid grid--full grid-small--half grid--gutters--small">
|
2018-03-20 14:21:15 +01:00
|
|
|
{% assign guides = site.guides | sort: 'order' %}
|
|
|
|
{% for guide in guides limit: 4 %}
|
|
|
|
<div class="grid__col">
|
|
|
|
<article class="guide">
|
2018-04-06 10:17:42 +02:00
|
|
|
<a href="{{ guide.url }}" {% if guide.header %}style="background-image:url('/developers/guides/{{ guide.header }}')" {% endif %}>
|
2018-03-20 14:21:15 +01:00
|
|
|
<h1 class="guide__title">{{ guide.title }}</h1>
|
|
|
|
<p class="guide__tagline">{{ guide.tagline }}</p>
|
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2017-11-17 12:21:07 +01:00
|
|
|
</div>
|
2017-11-22 13:57:03 +01:00
|
|
|
|
2017-11-17 12:21:07 +01:00
|
|
|
<div class="row text-center">
|
2018-04-06 14:32:29 +02:00
|
|
|
<a class="btn btn-secondary" href="{% link developers/guides.html %}">All chapters</a>
|
2017-11-17 12:21:07 +01:00
|
|
|
</div>
|
|
|
|
</section>
|