diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-07 17:37:49 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-07 17:37:49 +0100 |
commit | b464b819a15b5b9d62be810dd44a1111d35963d8 (patch) | |
tree | b9bd963233cc304c6d5677c129b6628cc64b093c | |
parent | 955326accab18542a4f89a16f43cdb46c5bad599 (diff) | |
download | volse-hubzilla-b464b819a15b5b9d62be810dd44a1111d35963d8.tar.gz volse-hubzilla-b464b819a15b5b9d62be810dd44a1111d35963d8.tar.bz2 volse-hubzilla-b464b819a15b5b9d62be810dd44a1111d35963d8.zip |
minimal page layout for oauth authorize
-rw-r--r-- | view/minimal.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/view/minimal.php b/view/minimal.php new file mode 100644 index 000000000..a8c693985 --- /dev/null +++ b/view/minimal.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 style="margin:0px!important; padding:0px!important; float:none!important;display:block!important;"><?php if(x($page,'content')) echo $page['content']; ?>
+ <div id="page-footer"></div>
+ </section>
+</body>
+</html>
+
|