ec98b67b6f
1. Add necessary closing bits to the doc ready function. 2. Update to current version of DataTables css and js.
81 lines
2.1 KiB
HTML
81 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<head>
|
|
{% include head.html %}
|
|
<script>
|
|
$(document).ready(function() {
|
|
// Initialize navgoco with default options
|
|
$("#mysidebar").navgoco({
|
|
caretHtml: '',
|
|
accordion: true,
|
|
openClass: 'active', // open
|
|
save: false, // leave false or nav highlighting doesn't work right
|
|
cookie: {
|
|
name: 'navgoco',
|
|
expires: false,
|
|
path: '/'
|
|
},
|
|
slide: {
|
|
duration: 400,
|
|
easing: 'swing'
|
|
}
|
|
});
|
|
|
|
$("#collapseAll").click(function(e) {
|
|
e.preventDefault();
|
|
$("#mysidebar").navgoco('toggle', false);
|
|
});
|
|
|
|
$("#expandAll").click(function(e) {
|
|
e.preventDefault();
|
|
$("#mysidebar").navgoco('toggle', true);
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
<script>
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
</script>
|
|
{% if page.datatable == true %}
|
|
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.css">
|
|
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.js"></script>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('table.datatable').DataTable( {
|
|
paging: false,
|
|
stateSave: true
|
|
}
|
|
);
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
|
|
</head>
|
|
<body>
|
|
{% include topnav.html %}
|
|
<!-- Page Content -->
|
|
<div class="container">
|
|
<div class="col-lg-12"> </div>
|
|
<!-- Content Row -->
|
|
<div class="row">
|
|
<!-- Sidebar Column -->
|
|
<div class="col-md-3">
|
|
|
|
{% include sidebar.html %}
|
|
<!-- Content Column -->
|
|
<div class="col-md-9">
|
|
{{content}}
|
|
</div>
|
|
<!-- /.row -->
|
|
</div>
|
|
<!-- /.container -->
|
|
</div>
|
|
|
|
</body>
|
|
{% if site.google_analytics %}
|
|
{% include google_analytics.html %}
|
|
{% endif %}
|
|
</html>
|