-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.php
More file actions
143 lines (113 loc) · 5.16 KB
/
index.php
File metadata and controls
143 lines (113 loc) · 5.16 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/* Local configurations/ overrides
***********************************************/
include ('php/functions.php');
define("SITE_TITLE", "Titiksha | Annual tech-fest of Shri Mata Vaishno Devi University", true);
?>
<!doctype html>
<html itemscope itemtype="http://schema.org/<?php echo SITE_TYPE; ?>" class=no-js>
<head>
<head>
<meta charset="utf-8">
<title> <?php echo SITE_TITLE; ?> </title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<?php /*
<meta itemprop="name" content="<?php print(site_title)?>">
<meta name="description" content="<?php print(site_description);?>">
<meta itemprop="description" content="<?php print(site_description);?>">
<meta itemprop="image" content="<?php print(site_photo_url);?>">
<meta name="keywords" content="<?php print(site_keywords);?>">
<meta name="author" content="<?php print(site_author);?>">
<?php get_fb_meta() ;?>
*/ ?>
<link rel="stylesheet" href="assests/css/style.css">
<link rel="stylesheet" href="assests/css/style.homepage.css">
<!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
<!-- All JavaScript at the bottom, except this Modernizr build incl. Respond.js
Respond is a polyfill for min/max-width media queries. Modernizr enables HTML5 elements & feature detects;
for optimal performance, create your own custom Modernizr build: www.modernizr.com/download/ -->
<script src="assests/js/libs/modernizr-2.0.6.min.js"></script>
</head>
<body>
<?php /*
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="#">Titiksha</a>
<ul class="nav pull-right">
<li class="active"><a href="">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Forum</a></li>
<li><a href="#contact">Contact</a></li>
<ul class="nav secondary-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle">Login</a>
<ul class="dropdown-menu">
<li><a href="#">Secondary link</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Another link</a></li>
</ul>
</li>
</ul>
</ul>
</div>
</div>
</div>
*/ ?>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>Welcome to Titiksha</h1>
<p>Annual tech-fest of Shri Mata Vaishno Devi University</p>
<p><a class="btn success" href="discussions/">View Latest Updates »</a></p>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="span-one-third">
<h2>About</h2>
<p>The website is in a rapid development mode. It is being updated continuously so expect the things to change here. If you like to suggest or participate in it's development, you are most welcome. Just follow this <a href="https://github.com/smvdu/titiksha-website">link</a> or raise an issue <a href="https://github.com/smvdu/titiksha-website/issues">here.</a></p>
<!-- <p><a class="btn" href="#">View details »</a></p> -->
</div>
<?php /*
<div class="span-one-third">
<h2>Register</h2>
<ul>
<li><a href="#">Rules and Regulations</a></li>
<li><a href="#">Rules and Regulations</a></li>
</div>
<div class="span-one-third">
<h2>Udates</h2>
<p id="lifestream"></p>
</div>
*/?>
</div>
<footer>
<p>© Titiksha 2012</p>
</footer>
</div> <!-- /container -->
<!-- JavaScript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assests/js/libs/jquery-1.7.1.min.js"><\/script>')</script>
<!-- scripts concatenated and minified via build script -->
<script defer src="assests/js/plugins.js"></script>
<script defer src="assests/js/script.js"></script>
<!-- end scripts -->
<!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID.
mathiasbynens.be/notes/async-analytics-snippet -->
<script>
var _gaq=[['_setAccount','UA-16351077-7'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
chromium.org/developers/how-tos/chrome-frame-getting-started -->
<!--[if lt IE 7 ]>
<script defer src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script defer>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>