1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-06-29 00:58:04 +02:00
site/_src/_includes/sections/section-guides.html

25 lines
962 B
HTML
Raw Normal View History

<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>
</header>
</div>
2017-11-22 13:57:03 +01:00
<div class="row">
2017-11-23 13:27:25 +01:00
{% assign guides = site.guides | sort: 'order' %}
{% for guide in guides limit: 3 %}
2017-11-22 13:57:03 +01:00
<article class="guide">
<a href="{{ guide.url }}" {% if guide.header %}style="background-image:url('/guides/{{ guide.header }}')" {% endif %}>
<h1 class="guide__title">{{ guide.title }}</h1>
<p class="guide__tagline">{{ guide.tagline }}</p>
</a>
</article>
{% endfor %}
</div>
2017-11-22 13:57:03 +01:00
<div class="row text-center">
<a class="btn btn-secondary" href="/guides/">All guides</a>
</div>
</section>