Skip to content

Instantly share code, notes, and snippets.

@jaredpalmer
Created November 11, 2016 16:01
Show Gist options
  • Save jaredpalmer/af0cdff01477b0abc151b86c097401aa to your computer and use it in GitHub Desktop.
Save jaredpalmer/af0cdff01477b0abc151b86c097401aa to your computer and use it in GitHub Desktop.
solid nav nunjucks
<nav class="nav xs-border-bottom-lighter xs-relative flex xs-flex-justify-start xs-flex-items-center fill-white xs-px2" style="height: 50px; line-height: 50px;" >
<a class="xs-flex-grow-0 xs-inline-block xs-mr3 bold link-gray caps" style="letter-spacing: .1em;" href="/">Palmer</a>
{% if user %}
<div class="xs-flex-grow-1 xs-text-left">
<a class="xs-inline-block xs-mr1 bold" href="/admin">Dashboard</a>
<a class="xs-inline-block xs-mr1 bold" href="/admin/users">Users</a>
<a class="xs-inline-block xs-mr1 bold" href="/admin">Companies</a>
<a class="xs-inline-block xs-mr1 bold" href="/admin">News</a>
<a class="xs-inline-block xs-mr1 bold" href="/admin">Events</a>
</div>
{% endif %}
<div class="xs-flex-grow-1 xs-text-right">
{% if user %}
<a class="xs-relative xs-bold button button--small button--secondary" href="/logout">Logout</a>
{% else %}
<a class="xs-inline-block xs-mr1 bold button button--small button--secondary" href="/login">Login</a>
{% endif %}
</div>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment