-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
43 lines (36 loc) · 1.05 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
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
$title="- Make your Rivals Pay!";
$description="SCHOOLD U is a site for creating challenges between collegiate sports fans. The money pledged by both parties is donated to a Charity paired with the winner's University.";
require_once("page_framework/header.php");
?>
<body>
<div class="container">
<? include 'page_framework/nav.php'; ?>
<div class="row-fluid">
<? include 'widget/carousel.php'; ?>
<div class="row span3">
<div id="profile_widget">
<? include 'widget/profile.php'; ?>
</div>
<? include 'widget/deduction.php'; ?>
</div>
</div>
<div class="row-fluid">
<? include 'widget/how_it_works.php'; ?>
<? include 'widget/todays_games.php'; ?>
<? include 'widget/all_game_stats.php'; ?>
</div>
<?include_once('page_framework/footer.php');?>
</div>
<!-- js specific to this page-->
<script type="text/javascript">
$(window).load(function() {
$('.carousel').carousel({
interval: 0
});
});
</script>
</body>
</html>