-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
21 lines (15 loc) · 846 Bytes
/
header.html
File metadata and controls
21 lines (15 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<header class="main-header">
<div class="header-container wrapper">
<input type="checkbox" id="toggle" />
<nav>
<label for="toggle" class="toggle" onclick></label>
<ul>
<li><a class="{% if page.url == '/consulting/index.html' %}active{% endif %}" href="/consulting">Consulting</a></li>
<li><a class="{% if page.url == '/work/index.html' %}active{% endif %}" href="/work">Work</a></li>
<li><a class="{% if page.url == '/about-us/index.html' %}active{% endif %}" href="/about-us">About Us</a></li>
<li><a class="{% if page.url == '/contact/index.html' %}active{% endif %}" href="/contact">Contact</a></li>
</ul>
</nav>
<a class="logo" href="/"><img src="/public/images/logos/m-logo.png" alt="minuscode"></a>
</div><!-- /header-container -->
</header><!-- /main-header -->