mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-10 16:09:00 +01:00
49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
{% include header.html %}
|
|
|
|
<section role="main" class="content content--page content--guide">
|
|
<div class="row content--page--markdown">
|
|
|
|
{% if page.learn %}
|
|
<header class="section-header section-header--guide">
|
|
<div class="section-description">
|
|
<h2>You will learn</h2>
|
|
{{ page.learn | markdownify }}
|
|
</div>
|
|
</header>
|
|
{% endif %}
|
|
|
|
{{ content | toc }}
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="row">
|
|
<header class="section-header">
|
|
<h1 class="section-title">More guides</h1>
|
|
</header>
|
|
</div>
|
|
<div class="row">
|
|
<div class="grid grid--full grid-small--half grid--gutters">
|
|
{% for guide in site.guides limit: 4 %}
|
|
{% unless page.id == guide.id %}
|
|
<div class="grid__col">
|
|
<article class="guide">
|
|
<a href="{{ guide.url }}" {% if guide.header %}style="background-image:url('../{{ guide.header }}')" {% endif %}>
|
|
<h1 class="guide__title">{{ guide.title }}</h1>
|
|
</a>
|
|
</article>
|
|
</div>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="row text-center">
|
|
<a class="btn btn-secondary" href="/guides/">All guides</a>
|
|
</div>
|
|
</section>
|