-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
24 lines (22 loc) · 842 Bytes
/
404.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
<?php
$page_title = $web_title = $title_a = '404 Page Not Found';
$base_url = 'http://'.$_SERVER['HTTP_HOST'].'/';
require_once "views/header.php";
require_once "views/navbar.php";
require_once "views/page_title.php";
?>
<div class="container">
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<p itemprop="description" style="font-size:16px;text-align:center;margin:0 0 30px 0;">The page you requested was not found. May be page has been deleted or absolutely nothing.</p>
<div style="margin-bottom:0px">
<form action="<?= $base_url ?>blog" method="get" accept-charset="UTF-8">
<input type="text" name="search" class="form-control" placeholder="Cari Post disini...!">
</form>
</div>
</div>
</div>
</div>
<?php
require_once "views/footer.php";
?>