diff options
author | friendica <info@friendica.com> | 2012-03-28 03:19:42 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-28 03:19:42 -0700 |
commit | b58dc431481d6afb7af9f571932d1d215a079d12 (patch) | |
tree | b46e39298070af0b986ee1abd70ff698cc165670 /view/theme/dispy-dark/default.php | |
parent | b18086097e6ffd6f8b456ac27af1de16ad2977a1 (diff) | |
parent | c32ee4d226dec11d881dd5c68eda073e87780c12 (diff) | |
download | volse-hubzilla-b58dc431481d6afb7af9f571932d1d215a079d12.tar.gz volse-hubzilla-b58dc431481d6afb7af9f571932d1d215a079d12.tar.bz2 volse-hubzilla-b58dc431481d6afb7af9f571932d1d215a079d12.zip |
Merge branch 'pull'
Diffstat (limited to 'view/theme/dispy-dark/default.php')
-rw-r--r-- | view/theme/dispy-dark/default.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/view/theme/dispy-dark/default.php b/view/theme/dispy-dark/default.php new file mode 100644 index 000000000..e74ec1a4f --- /dev/null +++ b/view/theme/dispy-dark/default.php @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> + <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'] ?> +</head> +<body> + <?php if(x($page,'nav')) echo $page['nav']; ?> + <aside> + <?php if(x($page,'aside')) echo $page['aside']; ?> + <?php if(x($page,'aside_bottom')) echo $page['aside_bottom']; ?> + </aside> + <section><?php if(x($page,'content')) echo $page['content']; ?> + <div id="page-footer"></div> + </section> + <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer> +</body> +</html> + |