-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (34 loc) · 1.22 KB
/
Copy pathindex.php
File metadata and controls
38 lines (34 loc) · 1.22 KB
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
<!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">
<title>SACS Middle School Softball</title>
<link href="css/bootstrap-4.0.0.css" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<?php $currentPage = 'Home';
$jumbotronHeading = 'Lions Softball';
$jumbotronPara = '2019 ISAL Champions';
?>
<?php include('favicon.php') ?>
</head>
<body class="bg-black">
<?php include('navigation.php'); ?>
<?php include('jumbotron.php') ?>
<section>
<div class="container-fluid bg-dark main_bg">
<div class="row">
<div class="mx-auto text-center"><img src="images/main_bg2.jpg" style="max-width: 90%;"alt="team background"></div>
</div>
</div>
</section>
<hr>
<?php include('footer.php') ?>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-3.2.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/popper.min.js"></script>
<script src="js/bootstrap-4.0.0.js"></script>
</body>
</html>