-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
37 lines (30 loc) · 833 Bytes
/
about.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
<?php
$base = '..';
$js = array($base . '/assets/js/vendor/Justified-Gallery-master/src/js/justifiedGallery.js',$base . '/assets/js/vendor/swipebox-master/src/js/jquery.swipebox.min.js');
$css = array($base . '/assets/js/vendor/Justified-Gallery-master/src/justifiedGallery.min.css',$base . '/assets/js/vendor/swipebox-master/src/css/swipebox.min.css');
include ('assets/includes/header.php');
?>
<!-- main content goes here -->
<div class="row">
<div class="col-lg-12">
<ol class="breadcrumb">
<li>
<a href="/">Home</a>
</li>
<li>
About
</li>
</ol>
</div>
<!-- main content goes here -->
<article class="col-md-12">
<h2>About</h2>
<p>Some info....</p>
</article>
<!-- first sidebar goes here -->
<aside class="col-md-3 col-md-pull-9">
</aside>
</div>
<?php
include ('assets/includes/footer.php');
?>