-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.php
32 lines (20 loc) · 830 Bytes
/
blog.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
<?php include_once "header.php" ?>
<!-- Content
================================================== -->
<div id="content-wrap">
<div class="row">
<?php include_once "main.php" ?>
<?php include_once "sidebar.php" ?>
</div> <!-- end row -->
</div> <!-- end content-wrap -->
<!-- Footer
================================================== -->
<?php include "footer.php" ?>
<!-- Java Script
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>