-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
53 lines (51 loc) · 1.88 KB
/
Copy pathindex.php
File metadata and controls
53 lines (51 loc) · 1.88 KB
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
<?php require('include/header.php'); ?>
<div class="pushbelow"></div>
<div class="container-fluid text-center">
<div class="row content">
<div class="col-sm-2 text-left">
<ul class="sidebar-nav">
<li>
<a href="https://www.iitm.ac.in/">IITM</a>
</li>
<li>
<a href="https://dost.iitm.ac.in/iitmdost/">DOST</a>
</li>
<li>
<a href="https://www.facebook.com/saathi.iitm/">Facebook</a>
</li>
<li>
<a href="https://twitter.com/reachiitm">Twitter</a>
</li>
</ul>
</div>
<!--
<div class="col-sm-2 sidenav">
<p><a href="#">Link</a></p>
<p><a href="#">Link</a></p>
<p><a href="#">Link</a></p>
</div>
-->
<div class="col-sm-8 text-left scrl">
<h1><?php echo(($currpage?ucfirst($currpage):'Welcome'));?></h1>
<?php if(!@include('include/'.($currpage?$currpage:'welcome').'.html')) include('include/404.html'); ?>
</div>
<div class="col-sm-2 sidenav">
<div class="well">
<p>A Quote</p>
</div>
<div class="well">
<p>Another info box</p>
</div>
</div>
</div>
</div>
<footer class="container-fluid text-center">
<p>Footer Text</p>
</footer>
</body>
<script src="<?php echo($rooturi); ?>js/jquery.min.js"></script>
<script src="<?php echo($rooturi); ?>js/bootstrap.min.js"></script>
<script>
// alert("<?php echo(explode("/Saathi",$_SERVER['REQUEST_URI'])[1]); ?>");
</script>
</html>