forked from StartBootstrap/startbootstrap-clean-blog-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathnav.html
27 lines (26 loc) · 735 Bytes
/
nav.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!-- Navigation -->
<div class="nav-toggler text-right">
<div class="m-3">
<button class="hamburger hamburger--squeeze" type="button" data-toggle="modal" data-target="#exampleModal">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
</div>
</div>
<nav class="nav-menu" id="fixed">
<ul class="list-unstyled my-auto w-100 text-center">
<li class="list-unstyled-item">
<a href="/">Home</a>
</li>
<li class="list-unstyled-item">
<a href="/posts">Posts</a>
</li>
<li class="list-unstyled-item">
<a href="/projects">Projects</a>
</li>
<li class="list-unstyled-item">
<a href="/about">About</a>
</li>
</ul>
</nav>