zira/themes/bulaksu/layout.php

49 lines
1.3 KiB
PHP
Raw Normal View History

2016-06-02 14:42:43 +02:00
<!DOCTYPE html>
2017-08-11 14:10:11 +02:00
<html itemscope itemtype="http://schema.org/WebPage" lang="<?php echo Zira\Locale::getLanguage() ?>">
2016-06-02 14:42:43 +02:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-12-13 18:09:43 +01:00
<?php echo Zira\View::getWebsiteDefaultLinks(); ?>
2016-06-02 14:42:43 +02:00
<?php layout_head() ?>
</head>
2017-08-21 18:23:21 +02:00
<body class="<?php echo Zira\Helper::html(Zira\View::$body_class); ?>">
2018-09-21 22:29:53 +02:00
<?php renderFullscreenSlider(); ?>
2016-06-02 14:42:43 +02:00
<?php layout_body_top() ?>
<div id="main-container-wrapper"><div id="main-container">
2017-10-28 16:33:24 +02:00
<header>
2016-06-02 14:42:43 +02:00
<div class="container">
<div class="row">
<?php layout_header() ?>
</div>
2017-10-28 16:33:24 +02:00
</div>
</header>
<div class="container">
2016-06-02 14:42:43 +02:00
<div class="row">
<div class="col-sm-2 sidebar">
<aside>
<?php layout_sidebar_left() ?>
</aside>
</div>
<div id="content" class="col-sm-8">
<?php breadcrumbs(); ?>
<?php layout_content_top() ?>
<?php layout_content() ?>
<?php layout_content_bottom() ?>
</div>
<div class="col-sm-2 sidebar">
<aside>
<?php layout_sidebar_right() ?>
</aside>
</div>
</div>
<div class="row">
<footer>
<?php layout_footer() ?>
<a href="<?php echo Zira\Helper::url('rss'); ?>" target="_blank" class="rss-link" title="<?php echo t('RSS') ?>"></a>
</footer>
</div>
</div>
</div></div><!--/main-container-wrapper-->
2017-11-10 15:38:48 +01:00
<a href="javascript:void(0)" class="scroll-top" title="<?php echo t('Up') ?>"><span class="glyphicon glyphicon-circle-arrow-up"></span></a>
2017-03-08 21:46:36 +01:00
<?php layout_body_bottom() ?>
2016-06-02 14:42:43 +02:00
</body>
</html>