forked from ericwbailey/a11y-webring.club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.njk
53 lines (43 loc) · 1.47 KB
/
index.njk
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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="{{ metadata.lang }}">
<head>
{% include "includes/head.njk" %}
</head>
<body data-theme="system">
{% include "includes/icon-sprite.njk" %}
<main>
<div class="[ grid-title ] [ u-centered u-color-background-primary u-color-text-secondary ]">
{% include "includes/intro.njk" %}
</div>
<nav
class="[ grid-prev-rand-next ]"
aria-label="Previous, random, and next">
{% include "includes/previous-random-next.njk" %}
{% include "includes/legal.njk" %}
</nav>
<nav
class="[ grid-toc ] [ u-padding-0 ]"
aria-labelledby="table-of-contents">
{% include "includes/toc.njk" %}
</nav>
<nav
class="[ grid-members ] [ u-content-inset-block-start u-content-inset-block-end u-content-inset-inline-start u-content-inset-inline-end ]"
aria-labelledby="members">
{% include "includes/members.njk" %}
</nav>
<div class="[ grid-join ] [ u-content-inset u-content-max-width u-flow ]">
{% include "includes/join.njk" %}
</div>
<div class="[ grid-embed ] [ u-content-inset u-color-background-primary u-color-text-secondary ]">
{% include "includes/widget.njk" %}
</div>
<div class="[ grid-faq ] [ u-content-inset u-content-max-width u-flow ]">
{% include "includes/faq.njk" %}
</div>
</main>
<footer class="[ grid-footer ] [ c-footer ] [ u-push-apart u-color-background-primary u-color-text-secondary ]">
{% include "includes/footer.njk" %}
</footer>
{% include "includes/scripts.njk" %}
</body>
</html>