bulma/docs/_layouts/documentation.html

82 lines
2.7 KiB
HTML
Raw Normal View History

---
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>
2017-10-08 15:16:05 +00:00
<section class="hero is-link">
<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>
</li>
2017-08-14 17:25:14 +00:00
<li {% if page.doc-tab == 'columns' %}class="is-active"{% endif %}>
<a href="{{ site.url }}/documentation/columns/basics">Columns</a>
</li>
2017-08-01 20:05:10 +00:00
<li {% if page.doc-tab == 'layout' %}class="is-active"{% endif %}>
<a href="{{ site.url }}/documentation/layout/container/">Layout</a>
</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>
<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>
</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 %}
</li>
</ul>
</div>
</div>
</nav>
</section>
{{ content }}
2017-07-24 18:36:40 +00:00
2017-10-12 16:25:11 +00:00
<section class="section bd-typo">
2017-07-24 18:36:40 +00:00
<div class="container">
2017-08-14 17:25:14 +00:00
<p class="has-text-centered has-text-grey-light">
2017-10-12 16:25:11 +00:00
<a href="{{ site.url }}/made-with-bulma/">
<img src="{{ site.url }}/images/made-with-bulma.png" alt="Made with Bulma" width="128" height="24">
</a>
<br>
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?
2017-07-24 18:36:40 +00:00
<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>