-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.php
executable file
·114 lines (100 loc) · 4.2 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-signin-client_id" content="307712715810-5gqv439ef8l9hmmod3ggpbdplcc7t7gq.apps.googleusercontent.com">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Team .EXE is the technical team of Computer Science & Engineering Department for technical fest NIMBUS at NIT Hamirpur.">
<meta name="author" content="Team .EXE">
<link rel="icon" href="images/title.png">
<meta property="og:image" content="images/logo.png"/>
<meta property="og:title" content="Team .EXE - NIT Hamirpur"/>
<meta property="og:url" content="http://exe.nith.ac.in"/>
<meta property="og:site_name" content="Team .EXE - NIT Hamirpur"/>
<title>Team .EXE</title>
<?php
include_once('stylesheets.php');
include_once('dbconnect.php');
?>
</head>
<body>
<?php
include_once('header.php');
include_once('navigation.php');
?>
<!-- Fade & scale -->
<div id="fadeandscale" class="content cover">
<center>
<img src="images/logo.png" />
<svg viewBox="0 0 1200 200">
<symbol id="s-text">
<text text-anchor="middle" x="50%" y="50%" dy=".35em">
Team .EXE
</text>
</symbol>
<use xlink:href="#s-text" class="text"></use>
<use xlink:href="#s-text" class="text"></use>
<use xlink:href="#s-text" class="text"></use>
<use xlink:href="#s-text" class="text"></use>
<use xlink:href="#s-text" class="text"></use>
</svg>
<svg viewBox="0 0 1900 200">
<symbol id="s-text">
<text text-anchor="middle" x="50%" y="50%" dy=".35em" class="text--line">
welcomes you
</text>
</symbol>
<clippath id="cp-text">
<text text-anchor="middle" x="50%" y="50%" dy=".35em" class="text--line">
welcomes you
</text>
</clippath>
<g clip-path="url(#cp-text)" class="shadow">
<rect width="100%" height="100%" class="anim-shape anim-shape--shadow"></rect>
</g>
<g clip-path="url(#cp-text)" class="colortext">
<rect width="100%" height="100%" class="anim-shape"></rect>
<rect width="80%" height="100%" class="anim-shape"></rect>
<rect width="60%" height="100%" class="anim-shape"></rect>
<rect width="40%" height="100%" class="anim-shape"></rect>
<rect width="20%" height="100%" class="anim-shape"></rect>
</g>
<use xlink:href="#s-text" class="text--transparent"></use>
</svg>
<button class="fadeandscale_close btn-lg btn btn-info">Enter Website</button>
</center>
</div>
<script>
$(document).ready(function () {
$('#fadeandscale').popup({
pagecontainer: '.container',
autoopen: 'true',
opacity: '0.85',
transition: 'all 0.3s'
});
});
</script>
<a href="http://exe.nith.ac.in/paradox" target="_blank"><img src="images/paradox.jpeg" alt="NITH Confessions" style="width: 100%" /></a>
<!-- Projects,events &workshops of Team .EXE -->
<section id="blog-full-width">
<div class="container">
<center><h1><b>OUR CONTRIBUTION THIS NIMBUS</b></h1></center>
<?php
include_once('projects_embed.php');
include_once('event_embed.php');
include_once('workshop_embed.php');
?>
</div>
</div>
</div>
</section>
</div>
</div>
<?php
include_once('footer.php');
?>
</script>
</body>
</html>