2016-09-11 11:00:49 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
route: documentation
|
|
|
|
---
|
|
|
|
|
2017-07-02 15:52:20 +00:00
|
|
|
<div class="container">
|
2017-07-17 14:05:39 +00:00
|
|
|
{% include navbar.html id="Documentation" %}
|
2017-07-02 15:52:20 +00:00
|
|
|
</div>
|
2016-09-11 11:00:49 +00:00
|
|
|
|
2016-12-23 13:20:13 +00:00
|
|
|
<section class="hero is-primary">
|
2016-09-11 11:00:49 +00:00
|
|
|
<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>
|
2017-07-17 14:05:39 +00:00
|
|
|
<li {% if page.doc-tab == 'form' %}class="is-active"{% endif %}>
|
|
|
|
<a href="{{ site.url }}/documentation/form/general">Form</a>
|
|
|
|
</li>
|
2016-09-11 11:00:49 +00:00
|
|
|
<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 %}>
|
2017-07-05 20:14:30 +00:00
|
|
|
{% if site.vernum >= 43 %}
|
2017-07-02 23:17:42 +00:00
|
|
|
<a href="{{ site.url }}/documentation/components/breadcrumb/">Components</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ site.url }}/documentation/components/card/">Components</a>
|
|
|
|
{% endif %}
|
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 }}
|
2017-07-24 18:36:40 +00:00
|
|
|
|
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
2017-07-29 16:58:13 +00:00
|
|
|
<p class="has-text-grey-light">
|
2017-07-24 18:36:40 +00:00
|
|
|
This page is <strong class="has-text-grey">open source</strong>.
|
|
|
|
Noticed a typo?
|
|
|
|
Or something unclear?
|
|
|
|
<a class="has-text-grey" href="https://github.com/jgthms/bulma/blob/master/docs/{{ page.path }}" style="border-bottom: 1px solid currentColor;">
|
|
|
|
Improve this page on GitHub
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|