www/public_html/lib/tpl/e/main.php

146 lines
5.9 KiB
PHP

<?php
/**
* DokuWiki Twitter Bootstrap Template
*
* @link https://github.com/ryanwmoore/dokutwitterbootstrap
* @author Ryan Moore <rwmoore07@gmail.com>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*/
// error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE); ini_set('display_errors', '1'); // Switch on for error reporting
if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */
@require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
$showTools = !tpl_getConf('hideTools') || ( tpl_getConf('hideTools') && $_SERVER['REMOTE_USER'] );
# calling tpl_toc() here returns null if the toc wouldn't normally be rendered
# so $showTOC will be true if TOC would be rendered, false if not
# this affects our grid layout later ( see 'if ($showTOC)' )
$showTOC = ($ACT == "show") && tpl_toc(true);
$hasSidebar = page_findnearest($conf['sidebar']);
$showSidebar = $hasSidebar && ($ACT=='show');
?><!DOCTYPE html>
<html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>">
<head>
<meta charset="UTF-8" />
<title><?php tpl_pagetitle() ?></title>
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
<?php tpl_metaheaders() ?>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<?php echo tpl_favicon(array('favicon', 'mobile')) ?>
<?php tpl_includeFile('meta.html') ?>
<link href="<?php echo tpl_getMediaFile(array("css/bootstrap-".tpl_getConf('bootswatch').".min.css")); ?>" rel="stylesheet">
<link href="<?php echo tpl_getMediaFile(array("css/modifications.css")); ?>" rel="stylesheet">
<script src="<?php echo tpl_getMediaFile(array("js/bootstrap.min.js")); ?>"></script>
<script src="<?php echo tpl_getMediaFile(array("js/modifications.js")); ?>"></script>
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
</head>
<body>
<?php /* with these Conditional Comments you can better address IE issues in CSS files,
precede CSS rules by #IE6 for IE6, #IE7 for IE7 and #IE8 for IE8 (div closes at the bottom) */ ?>
<?php
/* The "dokuwiki__top" id is needed somewhere at the top, because that's where the "back to top" button/link links to
classes mode_<action> are added to make it possible to e.g. style a page differently if it's in edit mode,
See http://www.dokuwiki.org/devel:action_modes for a list of action modes
.dokuwiki should always be in one of the surrounding elements (e.g. plugins and templates depend on it) */ ?>
<div id="dokuwiki__site">
<div id="dokuwiki__top" class="dokuwiki site mode_<?php echo $ACT ?>"></div>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./"><?php echo $conf['title']; ?></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-left">
<?php tpl_includeFile('nav.html');?>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Options<b class="caret"></b></a>
<?php _tpl_output_page_tools($showTools, 'li'); ?>
</li>
<?php _tpl_userinfo(); ?>
<li>
<div class="navbar-form form-group" role="search">
<?php _tpl_output_search_bar(); ?>
</div>
</li>
</ul>
</div>
</div> <!-- container -->
</nav> <!-- navbar -->
<?php html_msgarea() /* occasional error and info messages on top of the page */ ?>
<?php tpl_includeFile('header.html') ?>
<div class="container">
<!-- ********** SIDE BAR for TOCIFY ********** -->
<div class="row">
<?php /* when in Show Mode we render the TOC, if not, use full width for content */
if ($showTOC) { ?>
<!-- Make side bar 3 "md's" wide -->
<div class="col-md-3">
<?php _tpl_toc_to_twitter_bootstrap(); ?>
</div>
<div class="col-md-8" id="dokuwiki__content">
<?php } else { ?>
<div class="col-md-11" id="dokuwiki__content">
<?php } ?>
<?php if($showSidebar): ?>
<!-- ********** ASIDE ********** -->
<div id="dokuwiki__aside" class="bs-sidebar"><div class="nav pad aside include group">
<h3 class="toggle">Navigation</h3>
<div class="content">
<?php tpl_flush() ?>
<?php tpl_includeFile('sidebarheader.html') ?>
<?php tpl_include_page($conf['sidebar'], true, true) ?>
<?php tpl_includeFile('sidebarfooter.html') ?>
</div>
</div></div><!-- /aside -->
<?php endif; ?>
<div class="page">
<?php tpl_flush(); ?>
<?php tpl_content(false); ?>
<div class="clearer"></div>
</div>
</div>
</div><!-- row -->
</div><!-- container -->
<div class="clearer"></div>
<hr class="a11y" />
<!-- ********** FOOTER ********** -->
<footer>
<div class="clearer"></div>
<div class="container">
<div class="row">
<div class="col-md-11 text-muted text-right">
<?php tpl_flush(); ?>
<?php tpl_license('button') /* content license, parameters: img=*badge|button|0, imgonly=*0|1, return=*0|1 */ ?>
<?php tpl_includeFile('footer.html') ?>
</div>
</div>
</div>
</footer>
</div><!-- dokuwiki__site -->
<div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
</body>
</html>