-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout_head.php
38 lines (30 loc) · 1.15 KB
/
layout_head.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- set the page title, for seo purposes too -->
<title><?php echo isset($page_title) ? strip_tags($page_title) : "Store Front"; ?></title>
<!-- Bootstrap CSS -->
</head> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" media="screen" />
<!-- admin custom CSS -->
<link href="<?php echo $home_url . "libs/css/customer.css" ?>" rel="stylesheet" />
</head>
<body>
<!-- include the navigation bar -->
<?php include_once 'navigation.php'; ?>
<!-- container -->
<div class="container">
<?php
// if given page title is 'Login', do not display the title
if($page_title!="Login"){
?>
<div class='col-md-12'>
<div class="page-header">
<h1><?php echo isset($page_title) ? $page_title : "Bikash Ghimire"; ?></h1>
</div>
</div>
<?php
}
?>