forked from openlawdc/browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<title>DC Code Browser</title>
<link rel='stylesheet' type='text/css' href='css/style.css' />
<link rel='stylesheet' type='text/css' href='css/site.css' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
</head>
<body class='code-browser'>
<div class='restrict'>
<div class='nav col3'>
<div class='pad1'>
<h2>Title</h2>
</div>
<ul class='items' id='titles'></ul>
</div>
<div class='nav col3 sections-container'>
<div class='pad1'>
<h2>Section</h2>
</div>
<ul class='items' id='sections'></ul>
</div>
<div class='col6 content'>
<div id='section'>
</div>
</div>
</div>
<div class='footer'>
<a href='http://macwright.org/2013/04/04/the-open-code.html'>unofficial washington, dc code</a> +
an open-source
<a href='https://github.com/openlawdc/dc-decoded'>parser</a>
and <a href='https://github.com/openlawdc/code-browser'>browser</a> /
<a href='about.html'>about this</a>
</div>
<script src='js/d3.v3.min.js'></script>
<script src='js/browser.js'></script>
<!-- citation extraction -->
<script src='js/xregexp-min.js'></script>
<script src='js/underscore-min.js'></script>
<!-- at github.com/unitedstates/citation -->
<script src='js/citation/citation.js'></script>
<script src='js/citation/dc_code.js'></script>
</body>
</html>