mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 09:01:15 -04:00
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* * Name: doubleleft
|
|
* * Description: Hubzilla 2-column layout with left aside
|
|
* * Version: 1
|
|
* * Author: zlax
|
|
* * Maintainer: zlax
|
|
* * ContentRegion: aside, left_aside_wrapper
|
|
* * ContentRegion: content, region_2
|
|
*/
|
|
?>
|
|
<!DOCTYPE html >
|
|
<html prefix="og: http://ogp.me/ns#" <?php if(x($page,'color_mode')) echo $page['color_mode'] ?>>
|
|
<head>
|
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
|
<script>var baseurl="<?php echo z_root() ?>";</script>
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
|
</head>
|
|
<body <?php if($page['direction']) echo 'dir="rtl"' ?> >
|
|
<?php if(x($page,'banner')) echo $page['banner']; ?>
|
|
<header><?php if(x($page,'header')) echo $page['header']; ?></header>
|
|
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
|
<main>
|
|
<div class="content">
|
|
<div class="columns">
|
|
<aside id="region_1" class="d-none d-lg-block"><div class="aside_spacer_top_left"></div><div class="aside_spacer_left"><div id="left_aside_wrapper" class="aside_wrapper"><?php if(x($page,'aside')) echo $page['aside']; ?></div></div></aside>
|
|
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
|
|
<div id="page-footer"></div>
|
|
<div id="pause"></div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
|
</body>
|
|
</html>
|