-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblank.php
More file actions
36 lines (24 loc) · 679 Bytes
/
blank.php
File metadata and controls
36 lines (24 loc) · 679 Bytes
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
<?php
include_once 'parts/header.php';
?>
<body>
<?php include_once 'parts/nav.php';?>
<!-- start: Content -->
<div id="content" class="span10">
<ul class="breadcrumb">
<li>
<i class="icon-home"></i>
<a href="index.php">Home</a>
<i class="icon-angle-right"></i>
</li>
<li><a href="blank.php">Blank</a></li>
</ul>
<div class="row-fluid">
<h1 class="page-header">Blank</h1>
</div>
<!-- end: Content -->
</div><!--/#content.span10-->
</div><!--/fluid-row-->
<?php include_once 'parts/bottom.php';?>
</body>
</html>