-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (33 loc) · 1.38 KB
/
index.php
File metadata and controls
33 lines (33 loc) · 1.38 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
<!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>OuiSkin -- Home</title>
<link href='https://www.google.com/fonts#UsePlace:use/Collection:Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<link href="_/css/bootstrap.css" rel="stylesheet">
<link href="_/css/mystyles.css" rel="stylesheet">
</head>
<body id="home">
<section class = "container">
<div class="content row">
<?php include "_/components/php/header.php"; ?>
<section class = "main col col-lg-8">
<?php include "_/components/php/home-article.php"; ?>
</section><!--main-->
<section class = "sidebar col col-lg-4">
<?php include "_/components/php/home-skrollr.php"; ?>
</section><!--sidebar-->
<?php include "_/components/php/footer.php"; ?>
</div><!-- content-->
</section><!-- container-->
<script src="_/js/bootstrap.js"></script>
<script src="_/js/myscript.js"></script>
<script type="text/javascript">
skrollr.init({
forceHeight: false,
});
</script>
</body>
</html>