-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
65 lines (47 loc) · 1.41 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
require_once("includes/bootstrap.php");
ob_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Blog Home - Start Bootstrap Template</title>
<!-- Bootstrap core CSS -->
<link href="<?php echo BASEURL?>vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="<?php echo BASEURL?>css/style.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<?php
Helper::sectionYield("navigation");
?>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Blog Entries Column -->
<?php
include_once("includes/layouts/blogs.php");
?>
<!-- Sidebar Widgets Column -->
<?php
include_once ("includes/layouts/sidebar.php");
// Helper::sectionYield("sidebar");
?>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
<!-- Footer -->
<?php
Helper::sectionYield("footer");
?>
<!-- Bootstrap core JavaScript -->
<script src="<?php echo BASEURL?>vendor/jquery/jquery.min.js"></script>
<script src="<?php echo BASEURL?>vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>