-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsitemap.php
57 lines (46 loc) · 2.19 KB
/
sitemap.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
<?php include('header.php'); ?>
<!-- start body -->
<body onunload="" >
<!-- start dotted pattern -->
<div class="bg-overlay"></div>
<!-- end dotted pattern -->
<!-- start navigation -->
<?php include('menu.php'); ?>
<!-- end navigation -->
<!-- start content wrapper -->
<div class="content page-content">
<div class="page-title">
<h1>Sitemap</h1>
</div>
<div class="divider clear"></div>
<div class="inner-content">
<table style="width:100%">
<tr align="left"><th colspan="2">Main Menu</th><th colspan="2">Footer Links</th></tr>
<tr><td>•</td><td><a href="/">Home</a></td><td>•</td><td><a href="team.php">Team</a></td></tr>
<tr><td>•</td><td><a href="./about.php">About</a></td><td>•</td><td><a href="references.php">References</a></td></tr>
<tr><td>•</td><td><a href="./munis.php">Munis</a></td><td>•</td><td><a href="sitemap.php">Sitemap</a></td></tr>
<tr><td>•</td><td><a href="./events.php">Events</a></td><td>•</td><td><a href="tos.php">Terms and Conditions</a></td></tr>
<tr><td>•</td><td><a href="./chaturmas.php">Chaturmas</a></td><td>•</td><td><a href="disclaimer.php">Disclaimer</a></td></tr>
<tr><td>•</td><td><a href="./meaning-of-108.php">Meaning of 108</a></td></tr>
<tr><td>•</td><td><a href="./mahagun.php">Mahagun</a></td></tr>
<tr><td>•</td><td><a href="./uttargun.php">Uttargun</a></td></tr>
<tr><td>•</td><td><a href="./contact.php">Contact</a></td></tr>
<tr><td>•</td><td><a href="./donate.php">Donate</a></td></tr>
</table>
<p> </p>
<table style="width:100%">
<tr align="left"><th colspan="2">Guru Links</th></tr>
<?php
while($row = $t->fetch(PDO::FETCH_ASSOC)){
echo '<tr><td>• </td><td><a href="munis.php?id='.$row["id"].'">'.getmuni($row["id"]).'</a></td></tr>';
}
?>
</table>
</div>
<div class="sidebar">
<img alt="Acharya Kundkund | Jain Muni Locator" src="http://www.vitragvani.com/m/jeevan_parichay/pics/Aarcharya_kundkund.jpg" style="width:200px;margin-right:5px">
</div>
<!-- end widgets -->
</div>
<!-- end content wrapper -->
<?php include('footer.php'); ?>