-
Notifications
You must be signed in to change notification settings - Fork 2
/
side-bar1.php
38 lines (33 loc) · 2.32 KB
/
side-bar1.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
<div class="row">
<br>
<div class="col s12 m4 l3 hide-on-med-and-down navleft"> <!-- Note that "m4 l3" was added -->
<!-- Grey navigation panel
This content will be:
3-columns-wide on large screens,
4-columns-wide on medium screens,
12-columns-wide on small screens -->
<div class="collection">
<a href="find-ngo.php" class="collection-item">Locate NGO/Volunteers<span class="badge"><?php echo NumberOfPeopleWhoAreHelping(); ?></span></a>
<a href="help-needed.php" class="collection-item">Help Needed<span class="badge"><?php echo NumberOfPeopleWhoWantHelp(); ?></span></a>
<a href="need-help.php"class="collection-item" >Need Help</a>
<a href="add-ngo.php" class="collection-item">Add NGO</a>
<a href="donate.php"class="collection-item" >Donate</a>
<a href="news.php"class="collection-item" >Follow the News</a>
<a href="livestatus.php" class="collection-item">Live Status</a>
<a href="safe.php" class="collection-item">Find Safe Place</a>
<a href="raillines.php" class="collection-item">Petrol and Train Services</a>
<a href="helpline.php" class="collection-item">Helpline<span class="badge"><?php echo NumberOfHelplineContacts(); ?></span></a>
<a href="sos.php" class="collection-item">Chennai Flood Reliefs</a>
<a href="heroes.php" class="collection-item">Heroes</a> <!-- Dropdown Trigger -->
<a class="collection-item" data-beloworigin="true" href="#!" ><span>Emergency<i class="material-icons right">arrow_drop_down</i></span></a>
<ul >
<li><a href="#!">Fire & rescue : <p>101</p></a></li>
<li class="divider"></li>
<li><a href="#!">Electricity : <p>1912</p></a></li>
<li class="divider"></li>
<li><a href="#!">District Emergency: <p>1077</p></a></li>
<li class="divider"></li>
<li><a href="#!">State Emergency:<p> 1070 </p></a></li>
</ul>
</div>
</div>