mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
22 lines
974 B
HTML
22 lines
974 B
HTML
<nav class="navbar has-shadow">
|
|
<div class="container">
|
|
<div class="navbar-brand">
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'container' %}is-active{% endif %}" href="{{ site.url }}/documentation/layout/container/">
|
|
Container
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'hero' %}is-active{% endif %}" href="{{ site.url }}/documentation/layout/hero/">
|
|
Hero
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'section' %}is-active{% endif %}" href="{{ site.url }}/documentation/layout/section/">
|
|
Section
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'footer' %}is-active{% endif %}" href="{{ site.url }}/documentation/layout/footer/">
|
|
Footer
|
|
</a>
|
|
<a class="navbar-item is-tab {% if page.doc-subtab == 'tiles' %}is-active{% endif %}" href="{{ site.url }}/documentation/layout/tiles/">
|
|
Tiles
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|