-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
executable file
·35 lines (35 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" media="all" href="/dist/app.css">
</head>
<body>
<div class="site">
<header class="header">Header</header>
<div class="content">
<article class="main">
<p>Click the +/- sign above to toggle the sidebars.<br />
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam,
feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi
vitae est. Mauris placerat eleifend leo.</p>
</article>
<input type="checkbox" id="sidebar-1-toggle">
<label for="sidebar-1-toggle"></label>
<aside class="sidebar sidebar-1">
<div>Sidebar 1</div>
</aside>
<input type="checkbox" id="sidebar-2-toggle">
<label for="sidebar-2-toggle"></label>
<aside class="sidebar sidebar-2">
<div>Sidebar 2</div>
</aside>
</div>
<footer class="footer">Footer</footer>
</div>
<script async src="/dist/app.js"></script>
</body>
</html>