-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.php
More file actions
29 lines (29 loc) · 1.34 KB
/
blog.php
File metadata and controls
29 lines (29 loc) · 1.34 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
<!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 -- Blog</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href="_/css/bootstrap.css" rel="stylesheet">
<link href="_/css/mystyles.css" rel="stylesheet">
</head>
<body id="blog">
<section class = "container">
<div class="content row">
<?php include "_/components/php/header.php"; ?>
<?php include "_/components/php/snippet-carousel.php"; ?>
<section class = "main col col-lg-8">
<?php include "_/components/php/timeline.php"; ?>
</section><!--main-->
<section class = "sidebar col col-lg-4">
<?php include "_/components/php/subscribe.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>
</body>
</html>