-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
27 lines (25 loc) · 1.01 KB
/
Copy pathabout.php
File metadata and controls
27 lines (25 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>MassBase -- About</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Bree+Serif|Merriweather:400,300,300italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
<link href="_/css/bootstrap.css" rel="stylesheet" media="screen">
<link href="_/css/mystyles.css" rel="stylesheet" media="screen">
</head>
<body id="about">
<section class="container">
<div class="content row">
<?php include "_/components/php/header.php"; ?>
<section class="main col col-lg-12">
<?php include "_/components/php/content-about.php"; ?>
</section><!-- main -->
</div><!-- content -->
<section class="container col col-sm-12">
<?php include "_/components/php/footer.php"; ?>
</section>
</section><!-- container -->
<script src="_/js/bootstrap.js"></script>
<script src="_/js/myscript.js"></script>
</body>
</html>