-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboilerplate.html
More file actions
41 lines (41 loc) · 1.31 KB
/
boilerplate.html
File metadata and controls
41 lines (41 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>edgebug.net</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="edgebug.net" />
<link rel="stylesheet" type="text/css" href="/css/edgebug.css" />
<link rel="icon" href="/assets/favicon.png" type="image/png">
</head>
<body>
<nav id="nav-bar" class="fix-top">
<input id="nav-visibility-state" type="checkbox" hidden checked>
<ul id="nav-list">
<li id="hide-btn">
<label for="nav-visibility-state">
<a><span><span id="hide-btn-state"></span></span></a>
</label>
</li>
<li><a href="/"><span>home</span></a></li>
<li><a href="/wares"><span>wares</span></a></li>
<li><a href="https://search.edgebug.net"><span>search</span></a></li>
<li><a href="https://github.com/fujimite/edgebug"><span>git</span></a></li>
<li id="info-btn">
<input id="info-box-state" type="checkbox" hidden>
<label for="info-box-state">
<a><span>info</span></a>
</label>
<div id="info-box">
<label for="info-box-state" id="close-btn">×</label>
<pre> page info
page information</pre>
</div>
</li>
</ul>
</nav>
<div id="content">
<!--content-->
</div>
</body>
</html>