-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
95 lines (88 loc) · 3.47 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html class = "no-js">
<head>
<meta charset = "utf-8">
<meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1">
<title>Sass HTML5 Boilerplate</title>
<meta name = "description" content = "Place your description here">
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel = "stylesheet" href = "css/style.css">
<!--[if lt IE 9]>
<script src = "bower_components/html5shiv/dist/html5shiv.min.js"></script>
<![endif]-->
</head>
<body role = "document">
<div class = "container">
<header role = "banner">
<label for = "toggle-nav" class = "responsive-grid show-phone" role = "button">
<i class = "icon-menu"></i>
</label>
<input type = "checkbox" class = "toggle-nav" id = "toggle-nav" checked = "checked">
<nav role = "navigation" class = "nav">
<ul>
<li><a href = "#">Home <i class = "icon-home"></i></a></li>
<li>
<a href = "#">About <i class = "icon-question"></i></a>
<ul>
<li><a href = "#">Example Dropdown 1</a></li>
<li><a href = "#">Example Dropdown 2</a></li>
<li><a href = "#">Example Dropdown 3</a></li>
<li>
<a href = "#">Example Dropdown 4</a>
<ul>
<li><a href = "#">Example Dropdown 1</a></li>
<li><a href = "#">Example Dropdown 2</a></li>
<li><a href = "#">Example Dropdown 3</a></li>
<li><a href = "#">Example Dropdown 4</a></li>
</ul>
</li>
</ul>
</li>
<li><a href = "#">Download <i class = "icon-download"></i></a></li>
<li>
<a href = "#">FAQ <i class = "icon-bubble"></i></a>
<ul>
<li><a href = "#">Example Dropdown 1</a></li>
<li><a href = "#">Example Dropdown 2</a></li>
<li><a href = "#">Example Dropdown 3</a></li>
<li><a href = "#">Example Dropdown 4</a></li>
<li><a href = "#">Example Dropdown 5</a></li>
<li><a href = "#">Example Dropdown 6</a></li>
<li><a href = "#">Example Dropdown 7</a></li>
<li><a href = "#">Example Dropdown 8</a></li>
</ul>
</li>
<li><a href = "#">Contact <i class = "icon-envelope"></i></a></li>
</ul>
</nav>
</header>
<article role = "main" id = "content">
<h1>Hello world!</h1>
<p>Thanks for choosing
<a href = "https://github.com/srsgores/sass-boilerplate" target = "_blank" title = "Sass Boilerplate">SASS
Boilerplate</a></p>
<section role = "region">
<h3>This is a region with more content in it.</h3>
<p>SASS Boilerplate uses ARIA-compliant markup for blind people. Please read any of the
following tutorials:</p>
<ul>
<li>
<a href = "http://blog.paciellogroup.com/2013/02/using-wai-aria-landmarks-2013/" target = "_blank">Using
WAI-ARIA Landmarks</a>
</li>
<li><a href = "http://www.brucelawson.co.uk/" target = "_blank">WAI-ARIA Markup Example</a></li>
<li><a href = "http://www.w3.org/TR/wai-aria/roles" target = "_blank">W3C Official
Documentation for WAI-ARIA</a></li>
<li>
<a href = "http://seangoresht.com/index.php/blog/item/design-for-the-blind-wai-aria-explained" target = "_blank">WAI-ARIA
Explained</a></li>
</ul>
</section>
</article>
</div>
<script src = "bower_components/jquery/dist/jquery.min.js"></script>
<script src = "scripts/main.js"></script>
<!-- TODO: Analytics -->
</body>
</html>