Skip to content

Commit 15d1d9d

Browse files
committed
Inserted partials into a main view
1 parent ff666f4 commit 15d1d9d

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

views/index.hbs

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
5+
<meta charset="utf-8" />
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
8+
<title>Accessible HTML Content Patterns</title>
9+
10+
<meta name="viewport" content="width=device-width, initial-scale=1" />
11+
12+
</head>
13+
14+
<body>
15+
16+
<h1>Accessible HTML Content Patterns</h1>
17+
18+
{{> section.project-link}}
19+
20+
<main role="main">
21+
22+
{{> section.table-of-contents}}
23+
24+
<hr />
25+
26+
{{> section.about}}
27+
28+
<hr />
29+
30+
{{> section.headings}}
31+
32+
<hr />
33+
34+
{{> section.text-level}}
35+
36+
<hr />
37+
38+
{{> section.tables}}
39+
40+
<hr />
41+
42+
{{> section.embedded}}
43+
44+
<hr />
45+
46+
{{> section.forms}}
47+
48+
<hr />
49+
50+
{{> section.footer}}
51+
52+
</main>
53+
</body>
54+
</html>

0 commit comments

Comments
 (0)