forked from mattxwang/robotics-club-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
34 lines (28 loc) · 951 Bytes
/
index.php
File metadata and controls
34 lines (28 loc) · 951 Bytes
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
<?php include_once("functions/import_info.php") ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="UCC Robotics">
<title>Home | UCC Robotics</title>
<link rel="icon" href="css/favicon.ico" />
<?php include_once("functions/stylesheet.php") ?>
<script src="js/jquery.js"></script>
</head>
<body>
<?php include_once("navbar.php") ?>
<?php include_once("footer.php") ?>
<div class="container">
<div class="jumbotron">
<h1>This website is undergoing construction.</h1>
<h3>Stay tuned for more info.</h3>
<p>
You can still do attendance and stuff like that. Register through the navbar!
</p>
</div>
<script src="js/jquery.easing.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/nav-collapse.js"></script>
</body>
</html>