mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
08ef4df2c0
* Add Bulma v9 * Add vendor dependencies * Fix native * Fix sponsors * Add style attribute
56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
---
|
|
layout: default
|
|
route: documentation
|
|
---
|
|
|
|
{% include global/navbar.html id="Documentation" %}
|
|
|
|
{% assign current_category = page.doc-tab %}
|
|
{% assign current_link_id = page.breadcrumb | last %}
|
|
{% assign current_link = site.data.links.by_id[current_link_id] %}
|
|
|
|
{% assign subtitle = current_link.subtitle %}
|
|
|
|
{% if page.subtitle %}
|
|
{% assign subtitle = page.subtitle %}
|
|
{% endif %}
|
|
|
|
<header id="docsToggles" class="bd-docs-toggles">
|
|
<button class="button is-primary is-light bd-fat-button is-small" id="docsNavButton">Show menu</button>
|
|
<button class="button is-primary is-light bd-fat-button is-small" id="docsSideButton">Show sidebar</button>
|
|
</header>
|
|
|
|
<div id="docs" class="bd-docs {% if page.fullwidth %}bd-is-fullwidth{% else %}bd-is-contained{% endif %}">
|
|
<div id="docsNavOverlay" class="bd-docs-overlay"></div>
|
|
|
|
<nav id="docsNav" class="bd-docs-nav {% if page.fullwidth %}bd-stickied{% endif %}">
|
|
{% include components/categories.html %}
|
|
</nav>
|
|
|
|
<main class="bd-docs-main">
|
|
{% if page.fullwidth %}
|
|
{% include components/docs-body.html %}
|
|
{% else %}
|
|
<div class="container">
|
|
{% include components/docs-body.html %}
|
|
</div>
|
|
{% endif %}
|
|
</main>
|
|
|
|
<aside id="docsSide" class="bd-docs-side {% if page.fullwidth %}bd-stickied{% endif %}">
|
|
{% include global/side-sponsor.html %}
|
|
|
|
{% if page.meta %}
|
|
{%
|
|
include elements/meta.html
|
|
colors=page.meta.colors
|
|
sizes=page.meta.sizes
|
|
variables=page.meta.variables
|
|
experimental=page.meta.experimental
|
|
%}
|
|
{% endif %}
|
|
|
|
{% include components/anchors.html %}
|
|
</aide>
|
|
</div>
|