-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.php
79 lines (73 loc) · 2.96 KB
/
nav.php
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
<!-- Navigation bar for Police in Politics site -->
<!doctype html>
<div id="title_panel">
<h1 style="margin-bottom: 0px; font-size:40px;"><a href="index.php">Police in Politics</a></h1>
<h4 style="margin-top: 0px;">Police Campaign Donations in Massachusetts, 2010-2020</h4>
<em>A project from Mijente, BU Spark!, and the ACLU of Massachusetts</em>
</div>
<nav class="navbar navbar-default navbar-static-top navbar-expand-md navbar-dark" role="navigation">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<!-- <span class="navbar-toggler-icon"><span>test</span></span> -->
<!-- Represents navbar collapsed menu on smaller screens -->
<span class="sr-only">Toggle navigation</span>
<i class="fa fa-bars" aria-hidden="true"></i> Menu
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav navbar-nav" id="panels" data-tabsetid="2360">
<li>
<a href="index.php">About</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-value="Mayor Walsh">
Mayor Walsh
<b class="caret"></b>
</a>
<ul class="dropdown-menu" data-tabsetid="2312">
<li>
<a href="walsh-donations-v-time.php">Police Donations over Time</a>
</li>
<li>
<a href="walsh-top-donors.php">Top Police Donors</a>
</li>
<li>
<a href="walsh-donor-map.php">Police Donations by Zip Code</a>
</li>
<li>
<a href="walsh-donation-recurrence.php">Recurrence and Scale of Police Donations</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-value="Current Boston City Councilors">
Current Boston City Councilors
<b class="caret"></b>
</a>
<ul class="dropdown-menu" data-tabsetid="9661">
<li>
<a href="current-bcc-total-donations.php">Total Police Donations</a>
</li>
<li>
<a href="current-bcc-share.php">Share of Police Donations</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-value="Boston City Councilors 2010-2020">
Boston City Councilors 2010-2020
<b class="caret"></b>
</a>
<ul class="dropdown-menu" data-tabsetid="4788">
<li>
<a href="bcc-2010-2020-total-donations.php">Total Police Donations</a>
</li>
<li>
<a href="bcc-2010-2020-donations-v-time.php">Police Donations Over Time</a>
</li>
<li>
<a href="bcc-2010-2020-share.php">Share of Police Donations</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>