mirror of
https://github.com/adulau/foo.be.git
synced 2024-11-22 01:37:05 +00:00
7 lines
569 B
HTML
Executable file
7 lines
569 B
HTML
Executable file
<nav class="c-navigation {% if site.fixedNav == 'true' %}is-fixed{% endif %}">
|
|
<div class="c-navigation__container u-container">
|
|
<a class="c-navigation__item {% if page.url == '/' %}is-active{% endif %}" href="{{ "/" | prepend: site.baseurl }}">Home</a>
|
|
<a class="c-navigation__item {% if page.url == '/articles/' %}is-active{% endif %}" href="{{ "/articles/" | prepend: site.baseurl }}">Articles</a>
|
|
<a class="c-navigation__item {% if page.url == '/about/' %}is-active{% endif %}" href="{{ "/about/" | prepend: site.baseurl }}">About</a>
|
|
</div>
|
|
</nav>
|