mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
50 lines
2.4 KiB
HTML
50 lines
2.4 KiB
HTML
<nav class="navbar has-shadow">
|
|
<div class="container is-fullhd">
|
|
<div class="navbar-brand">
|
|
{% if site.vernum >= 43 %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'breadcrumb' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/breadcrumb/">
|
|
Breadcrumb
|
|
</a>
|
|
{% endif %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'card' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/card/">
|
|
Card
|
|
</a>
|
|
{% if site.vernum >= 44 %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'dropdown' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/dropdown/">
|
|
Dropdown
|
|
</a>
|
|
{% endif %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'media-object' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/media-object/">
|
|
Media object
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'menu' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/menu/">
|
|
Menu
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'message' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/message/">
|
|
Message
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'modal' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/modal/">
|
|
Modal
|
|
</a>
|
|
{% if site.vernum >= 43 %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'navbar' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/navbar/">
|
|
Navbar
|
|
</a>
|
|
{% else %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'nav' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/nav/">
|
|
Nav
|
|
</a>
|
|
{% endif %}
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'pagination' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/pagination/">
|
|
Pagination
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'panel' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/panel/">
|
|
Panel
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'tabs' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/tabs/">
|
|
Tabs
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|