-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
82 lines (73 loc) · 3.45 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
<!DOCTYPE html>
<html>
<head>
<title>SF Code Browser (beta)</title>
<!-- handle older IE -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!--[if lt IE 9]>
<script type="text/javascript" src="js/aight.min.js"></script>
<![endif]-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
<link rel='stylesheet' type='text/css' href='css/style.css' media='screen' />
<link rel='stylesheet' type='text/css' href='css/site.css' media='screen' />
<link rel='stylesheet' type='text/css' href='css/print.css' media='print' />
<link rel='stylesheet' type='text/css' href='css/icons/style.css' media='screen' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
</head>
<body class='browser'>
<div class='header'>
<div class='col6'>
<h1>
San Francisco Code (beta)
<span id='code-identifier'></span>
<a href='./about.html' target='_blank' class='about-button no-print'>about</a>
</h1>
</div>
<div class="col6 search icon-search no-print">
<input type='text' id='search-title' />
</div>
</div>
<div class='restrict'>
<div class='nav col3 titles-container no-print'>
<h2>
<span class="symbol symbol-title">T</span>
<span class="title">Title</span>
</h2>
<ul class='items' id='titles'></ul>
</div>
<div class='nav col3 sections-container no-print'>
<h2>
<span class="symbol symbol-section">S</span>
<span class="title">Section</span>
</h2>
<ul class='items' id='sections'></ul>
</div>
<div class='col6 content'>
<div id='section'>
</div>
</div>
</div>
<script src='js/lib/d3.v3.min.js'></script>
<script src='js/lib/d3.keybinding.js'></script>
<script src='js/lib/d3.trigger.js'></script>
<script src='js/lib/d3.combobox.js'></script>
<script src='js/lib/director.min.js'></script>
<!-- citation extraction -->
<script src='js/lib/xregexp-min.js'></script>
<script src='js/lib/underscore-min.js'></script>
<script src='js/lib/citation.js'></script>
<!-- cross-ref of DC laws to bills, courtesy of @adamturoff -->
<script src='js/dc_laws.js'></script>
<!-- at github.com/unitedstates/citation
<script src='http://rawgithub.com/unitedstates/citation/master/citation.js'></script>
<script src='http://rawgithub.com/unitedstates/citation/master/citations/dc_code.js'></script>
<script src='http://rawgithub.com/unitedstates/citation/master/citations/dc_register.js'></script>
<script src='http://rawgithub.com/unitedstates/citation/master/citations/dc_law.js'></script>
<script src='http://rawgithub.com/unitedstates/citation/master/citations/law.js'></script>
<script src='http://rawgithub.com/unitedstates/citation/master/citations/stat.js'></script>
-->
<script src='js/citations.js'></script>
<script src='js/search.js'></script>
<script src='js/browser.js'></script>
</body>
</html>