diff options
author | friendica <info@friendica.com> | 2012-07-21 23:17:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-21 23:17:45 -0700 |
commit | 6d74c2c594fd00c32f38f5ad8d7dd66e9e58b077 (patch) | |
tree | 9e95853349b8d0e505afab450f5b8bf458bf56ce /view/full.php | |
parent | c1fe66bec5fb2fe3ce3be2985036c0c8b006d7fd (diff) | |
download | volse-hubzilla-6d74c2c594fd00c32f38f5ad8d7dd66e9e58b077.tar.gz volse-hubzilla-6d74c2c594fd00c32f38f5ad8d7dd66e9e58b077.tar.bz2 volse-hubzilla-6d74c2c594fd00c32f38f5ad8d7dd66e9e58b077.zip |
page templating and css management
Diffstat (limited to 'view/full.php')
-rw-r--r-- | view/full.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/view/full.php b/view/full.php new file mode 100644 index 000000000..c4d62d5cd --- /dev/null +++ b/view/full.php @@ -0,0 +1,14 @@ +<!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>
+ <section><?php if(x($page,'content')) echo $page['content']; ?>
+ <div id="page-footer"></div>
+ </section> +</body>
+</html>
+
|