mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-10 16:09:00 +01:00
27 lines
809 B
HTML
27 lines
809 B
HTML
---
|
|
layout: page
|
|
|
|
title: "The Hitchhiker's Guide to BigchainDB"
|
|
tagline: "This guide explains how to get started and build apps with BigchainDB"
|
|
image: share-image-guides.png
|
|
|
|
redirect_from:
|
|
- /guides/
|
|
---
|
|
|
|
<section class="section section--guideslist">
|
|
<div class="row">
|
|
{% assign guides = site.guides | sort: 'order' %}
|
|
{% for guide in guides %}
|
|
<article class="guide">
|
|
<a href="{{ guide.url }}" {% if guide.header %}style="background-image:url('./{{ guide.header }}')" {% endif %}>
|
|
<h1 class="guide__title">{{ guide.title }}</h1>
|
|
<p class="guide__tagline">{{ guide.tagline }}</p>
|
|
</a>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
|
|
{% include sections/section-getstarted.html %}
|