-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
32 lines (30 loc) · 1.11 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
<?php
// main landing page, allLoad.php just kicks out the entire database
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<?php include "includes/header-core.php";
$current_page = "index";
?>
</head>
<body id="index">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<?php include "includes/navbar.php"; ?>
<div class ="row center-align welcome">
<h2> What do our members do? </h2>
<p> A place to see what the members of CUSD do in their academic and professional lives </p>
</div>
<div class="row large-correction">
<?php include "includes/allLoad.php"; ?>
</div>
<?php include "includes/footer.php"; ?>
<?php include "includes/js-scripts.php"; ?>
</body>
</html>