minimal page layout for oauth authorize

This commit is contained in:
Fabio Comuni 2011-11-07 17:37:49 +01:00
parent 955326acca
commit b464b819a1
1 changed files with 14 additions and 0 deletions

14
view/minimal.php Normal file
View File

@ -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>