forked from GSA/https
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
40 lines (27 loc) · 650 Bytes
/
Copy pathbase.html
File metadata and controls
40 lines (27 loc) · 650 Bytes
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
---
---
<!DOCTYPE html>
<html lang="en-US">
<head>
{% include head.html %}
</head>
<body class="{{ layout.class }} {{ page.class }}">
<a class="usa-skipnav" href="#main-content">Skip to main content</a>
{% include header.html %}
<aside class="sidenav sticky">
{% include sidenav.html links=site.data.navigation.primary %}
</aside>
<main id="main-content" class="main-content">
<div class="usa-content">
{% if page.appendix %}
<h2>{{ page.title }}</h2>
{% else %}
<h1>{{ page.title }}</h1>
{% endif %}
{{ content }}
</div>
{% include footer.html %}
</main>
{% include scripts.html %}
</body>
</html>