1
0
mirror of https://github.com/bigchaindb/site.git synced 2025-02-11 16:11:40 +01:00
site/_src/_layouts/guide.html

51 lines
1.5 KiB
HTML
Raw Normal View History

2017-11-16 12:30:35 +01:00
---
layout: base
---
{% include header.html %}
2017-11-16 12:30:35 +01:00
2017-11-16 12:49:58 +01:00
<section role="main" class="content content--page content--guide">
<div class="row content--page--markdown">
2017-11-16 12:30:35 +01:00
2017-11-20 11:04:08 +01:00
{% 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 }}
2017-11-16 12:30:35 +01:00
</div>
</section>
2017-11-20 11:25:56 +01:00
<section class="section section--guides-more">
2017-11-16 12:30:35 +01:00
<div class="row">
<header class="section-header">
<h1 class="section-title">More guides</h1>
</header>
</div>
2017-11-20 11:25:56 +01:00
<div class="row row--wide">
<div class="grid grid--full grid-small--half grid-medium--third grid--gutters">
{% for guide in site.guides limit: 6 %}
{% unless page.id == guide.id %}
<div class="grid__col">
<article class="guide">
2017-11-24 13:09:26 +01:00
<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 %}
2017-11-16 12:30:35 +01:00
{% endfor %}
</div>
</div>
<div class="row text-center">
2017-11-24 13:09:26 +01:00
<a class="btn btn-primary" href="/guides/">All guides</a>
2017-11-16 12:30:35 +01:00
</div>
</section>
2017-11-20 11:25:56 +01:00
2018-04-06 11:33:52 +02:00
{% include sections/section-getstarted.html %}