-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·46 lines (40 loc) · 1.55 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
<!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="description" content="">
<meta name="author" content="">
<title>HM Record</title>
<link href='https://fonts.googleapis.com/css?family=Crimson+Text:400,700,400italic,700italic|Lato:400,300,700,400italic,300italic' rel='stylesheet' type='text/css'>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/general.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<?php include 'include/navbar.php'; ?>
<div class="container header">
<span id="headerDate"></span>
<h1>The Horace Mann Record</h1>
<hr />
<h4>Horace Mann School's Weekly Student Newspaper | Est. 1903</h4>
</div>
<div class="container" id="articles">
<hr id="headerBreaker" />
<div class="row">
<div class="col-sm-3" id="leftColumn"></div>
<div class="col-sm-6" id="middleColumn"></div>
<div class="col-sm-3" id="rightColumn"></div>
</div>
<div id="loadMore"><a href="#" id="loadMoreBtn">~ Load More ~</a></div>
</div>
<?php include 'include/footer.php'; ?>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/general.js"></script>
<script src="js/backend.js"></script>
<script src="js/index.js"></script>
</body>
</html>