2017-11-16 12:30:35 +01:00
|
|
|
---
|
|
|
|
layout: base
|
|
|
|
---
|
|
|
|
|
2017-11-17 16:18:44 +01:00
|
|
|
{% 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 %}
|
|
|
|
|
2017-11-17 12:21:07 +01:00
|
|
|
{{ content | toc }}
|
2017-11-17 16:18:44 +01:00
|
|
|
|
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">
|
2018-04-10 11:25:50 +02:00
|
|
|
<h1 class="section-title">More chapters</h1>
|
2017-11-16 12:30:35 +01:00
|
|
|
</header>
|
|
|
|
</div>
|
2017-11-20 11:25:56 +01:00
|
|
|
<div class="row row--wide">
|
2018-04-06 12:00:31 +02:00
|
|
|
<div class="grid grid--full grid-small--half grid-medium--third grid--gutters--small">
|
2018-04-10 11:25:50 +02:00
|
|
|
{% for chapter in site.guide limit: 6 %}
|
|
|
|
{% unless page.id == chapter.id %}
|
2017-11-17 13:21:43 +01:00
|
|
|
<div class="grid__col">
|
|
|
|
<article class="guide">
|
2018-04-10 11:25:50 +02:00
|
|
|
<a href="{{ chapter.url }}" {% if chapter.header %}style="background-image:url('../{{ chapter.header }}')"{% endif %}>
|
|
|
|
<h1 class="guide__title">{{ chapter.title }}</h1>
|
2017-11-17 13:21:43 +01:00
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{% endunless %}
|
2017-11-16 12:30:35 +01:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row text-center">
|
2018-04-10 17:50:24 +02:00
|
|
|
<a class="btn btn-primary" href="{% link developers/guide.html %}">All chapters</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 %}
|