bludit/bl-themes/docsx/index.php

74 lines
1.4 KiB
PHP
Raw Normal View History

2018-02-06 23:11:50 +01:00
<!DOCTYPE html>
<html>
<head>
<?php include(THEME_DIR_PHP.'head.php'); ?>
</head>
<body>
<!-- Load Bludit Plugins: Site Body Begin -->
<?php Theme::plugins('siteBodyBegin'); ?>
2018-02-17 11:32:05 +01:00
<!-- Navbar -->
<div>
<?php include(THEME_DIR_PHP.'navbar.php'); ?>
</div>
2018-02-06 23:11:50 +01:00
<!-- Content -->
2018-02-17 11:32:05 +01:00
<div class="container">
2018-02-06 23:11:50 +01:00
<div class="row">
2018-02-17 11:32:05 +01:00
<div class="col-md-3 side-nav-col">
2018-02-06 23:11:50 +01:00
<?php
2018-02-17 11:32:05 +01:00
include(THEME_DIR_PHP.'sidebar.php');
2018-02-06 23:11:50 +01:00
?>
2018-02-17 11:32:05 +01:00
</div>
<div class="col-md-9 doc-content">
<div class="main">
<?php
if ($WHERE_AM_I == 'page') {
include(THEME_DIR_PHP.'page.php');
} else {
include(THEME_DIR_PHP.'home.php');
}
?>
</div>
</div>
2018-02-06 23:11:50 +01:00
</div>
2018-02-17 11:32:05 +01:00
<footer>
<p class="pull-left">
© Prometheus Authors 2018
</p>
</footer>
</div>
2018-02-06 23:11:50 +01:00
<!-- Javascript -->
<?php
echo Theme::js('js/jquery.min.js');
echo Theme::js('js/bootstrap.min.js');
2018-02-17 11:32:05 +01:00
echo Theme::js('js/highlight.min.js');
2018-02-06 23:11:50 +01:00
?>
2018-02-17 11:32:05 +01:00
<!-- Init Highlight -->
<script>
hljs.initHighlighting();
</script>
<!-- TOC generator -->
<script>
$(document).ready(function() {
if ($('#page-content > h2').length > 1) {
$('#page-content > h2').each(function() {
$('#toc-content').append('<li><a href="' + $(this).attr('id') + '">' + $(this).text() + '</a></li>');
});
} else {
$('#toc').hide();
}
});
</script>
2018-02-06 23:11:50 +01:00
<!-- Load Bludit Plugins: Site Body End -->
<?php Theme::plugins('siteBodyEnd'); ?>
</body>
</html>