2016-09-11 11:00:49 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
route: documentation
|
|
|
|
---
|
|
|
|
|
|
|
|
<section class="hero is-primary">
|
|
|
|
<div class="hero-head">
|
|
|
|
<div class="container">
|
|
|
|
{% include header.html %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
|
|
|
<div class="columns is-vcentered">
|
|
|
|
<div class="column">
|
|
|
|
<p class="title">
|
|
|
|
Documentation
|
|
|
|
</p>
|
|
|
|
<p class="subtitle">
|
|
|
|
Everything you need to <strong>create a website</strong> with Bulma
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="column is-narrow">
|
|
|
|
{% include carbon.html %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="hero-foot">
|
|
|
|
<div class="container">
|
|
|
|
<nav class="tabs is-boxed">
|
|
|
|
<ul>
|
|
|
|
<li {% if page.doc-tab == 'overview' %}class="is-active"{% endif %}>
|
|
|
|
<a href="{{ site.documentation }}">Overview</a>
|
|
|
|
</li>
|
|
|
|
<li {% if page.doc-tab == 'modifiers' %}class="is-active"{% endif %}>
|
2016-10-16 18:15:56 +00:00
|
|
|
<a href="{{ site.url }}/documentation/modifiers/syntax">Modifiers</a>
|
2016-09-11 11:00:49 +00:00
|
|
|
</li>
|
|
|
|
<li {% if page.doc-tab == 'grid' %}class="is-active"{% endif %}>
|
2016-10-16 18:15:56 +00:00
|
|
|
<a href="{{ site.url }}/documentation/grid/columns">Grid</a>
|
2016-09-11 11:00:49 +00:00
|
|
|
</li>
|
|
|
|
<li {% if page.doc-tab == 'elements' %}class="is-active"{% endif %}>
|
2016-10-16 18:15:56 +00:00
|
|
|
<a href="{{ site.url }}/documentation/elements/box/">Elements</a>
|
2016-09-11 11:00:49 +00:00
|
|
|
</li>
|
|
|
|
<li {% if page.doc-tab == 'components' %}class="is-active"{% endif %}>
|
2016-10-16 18:15:56 +00:00
|
|
|
<a href="{{ site.url }}/documentation/components/card/">Components</a>
|
2016-09-11 11:00:49 +00:00
|
|
|
</li>
|
|
|
|
<li {% if page.doc-tab == 'layout' %}class="is-active"{% endif %}>
|
2016-10-16 18:15:56 +00:00
|
|
|
<a href="{{ site.url }}/documentation/layout/container/">Layout</a>
|
2016-09-11 11:00:49 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ content }}
|