diff options
Diffstat (limited to 'view/theme/dispy/default.php')
-rw-r--r-- | view/theme/dispy/default.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/theme/dispy/default.php b/view/theme/dispy/default.php index 32393f08d..b02f41947 100644 --- a/view/theme/dispy/default.php +++ b/view/theme/dispy/default.php @@ -1,13 +1,13 @@ <!DOCTYPE html> <html> <head> - <title><?php if(x($page,'title')) echo $page['title'] ?></title> + <title><?php if(x($page,'title')) echo $page['title']; ?></title> <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script> - <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> + <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?> </head> <body> <header> - <!-- header stuff will go here --> + <?php if(x($page, 'header')) echo $page['header']; ?> </header> <article id="articlemain"> <?php if(x($page,'nav')) echo $page['nav']; ?> |