diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-06 10:53:26 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-06 10:53:26 +0200 |
commit | 9391f6f9052ae16c9789e04a2a96b8aa96adb220 (patch) | |
tree | 5fabde66504f553e25a655398ebd8da04387d193 /view/php | |
parent | 245080a6d7b86ad2a94c62b02a8591bc70b99632 (diff) | |
download | volse-hubzilla-9391f6f9052ae16c9789e04a2a96b8aa96adb220.tar.gz volse-hubzilla-9391f6f9052ae16c9789e04a2a96b8aa96adb220.tar.bz2 volse-hubzilla-9391f6f9052ae16c9789e04a2a96b8aa96adb220.zip |
allow blocks to have custom classes and add a new template called zen which gives you an empty page to work with
Diffstat (limited to 'view/php')
-rw-r--r-- | view/php/zen.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/php/zen.php b/view/php/zen.php new file mode 100644 index 000000000..6fd11127c --- /dev/null +++ b/view/php/zen.php @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <title><?php if(x($page,'title')) echo $page['title'] ?></title> + <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> +</head> +<body> + <?php if(x($page,'content')) echo $page['content']; ?> +</body> +</html> |