website/layouts/partials/navbar.html
steverusso 696731b1b5 Refactors and project cleanup (#18)
Disable taxonomy types.

Put the simple software data in the home page content file.

Navbar can be cached.

Make the CSS assets and bundle the global CSS.

Can cache the scripts and the footer.

Global CSS and JS partials.

These don't make any sense.

Fix baseof titling.

Move navbar and footer out of directories where they are the only files, update base template.

Reviewed-by: jeff <jeff@simplesystems.tech>
2020-06-12 00:42:10 +00:00

46 lines
1.0 KiB
HTML

<div id="nav" class="navbar">
<button id="thToggle" class="flat round" onclick="toggleTheme()">Toggle</button>
<div class="spacer"></div>
<!--
<a href="/" class="navbar-title">
SimpleSystems
</a>
-->
<div class="spacer"></div>
<div class="navbar-items hide-sm-and-down">
<a href="/">Home</a>
<a href="/services/">Services</a>
<a href="/about/">About</a>
<a href="/blog/">Blog</a>
<a href="/jobs/">Jobs</a>
</div>
<button class="flat hide-md-and-up" onclick="openNavDrawer()">
<i class="material-icons">menu</i>
</button>
</div>
<div id="navDrawer" class="drawer">
<div class="navbar">
<div class="spacer"></div>
<button class="flat" onclick="closeNavDrawer()">
<i class="material-icons">menu</i>
</button>
</div>
<div class="drawer-items">
<a href="/">Home</a>
<a href="/services/">Services</a>
<a href="/about/">About</a>
<a href="/blog/">Blog</a>
<a href="/jobs/">Jobs</a>
</div>
</div>
<div id="navDrawerOverlay" class="overlay d-none" onclick="closeNavDrawer()"></div>