forked from GSA/https
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
43 lines (36 loc) · 1.13 KB
/
header.html
File metadata and controls
43 lines (36 loc) · 1.13 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<header class="usa-header site-header" role="banner">
{% include banner.html %}
<div class="usa-navbar site-header-navbar">
<button class="usa-menu-btn">Menu</button>
<div class="usa-logo site-logo" id="logo">
<em class="usa-logo-text">
<a href="{{ site.baseurl }}/" id="logo-text" title="{{ site.title }}">
{{ site.title }}
</a>
</em>
</div>
</div>
<!-- TBD horizontal nav -->
<nav role="navigation" class="usa-nav">
<div class="usa-nav-inner">
<button class="usa-nav-close">
<img src="{{ site.baseurl }}/{{ site.uswds_path }}/img/close.svg" alt="close">
</button>
</div>
</nav>
</header>
<!-- Mobile nav -->
<nav role="navigation" class="usa-nav sidenav-mobile">
<div class="usa-nav-inner">
<button class="usa-nav-close">
<img src="{{ site.baseurl }}/{{ site.uswds_path }}/img/close.svg" alt="close">
</button>
<ul class="usa-sidenav-list usa-accordion">
{% for section in site.data.navigation.mobile %}
<li>
<a href="{{ section.href }}">{{ section.text }}</a>
</li>
{% endfor %}
</ul>
</div>
</nav>