You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
693 B
16 lines
693 B
<!DOCTYPE html > |
|
<html prefix="og: http://ogp.me/ns#"> |
|
<head> |
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title> |
|
<script>var baseurl="<?php echo z_root() ?>";</script> |
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> |
|
</head> |
|
<body <?php if($page['direction']) echo 'dir="rtl"' ?> > |
|
<?php if(x($page,'banner')) echo $page['banner']; ?> |
|
<header><?php if(x($page,'header')) echo $page['header']; ?></header> |
|
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> |
|
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?> |
|
<div id="page-footer"></div> |
|
</section> |
|
</body> |
|
</html>
|
|
|