57 lines
1.1 KiB
HTML
57 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<head>
|
|
|
|
{% include head.html %}
|
|
|
|
<script>
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
</script>
|
|
|
|
{% if page.datatable == true %}
|
|
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.5/css/jquery.dataTables.css">
|
|
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.5/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>
|
|
|
|
|
|
{% include sidebar.html %}
|
|
|
|
<!-- Content Column -->
|
|
<div class="col-md-9">
|
|
{% comment %}
|
|
{% include algolia.html %}
|
|
{% endcomment %}
|
|
{{content}}
|
|
</div><!-- /.row -->
|
|
|
|
</div> <!-- /.container -->
|
|
|
|
</body>
|
|
{% if site.google_analytics %}
|
|
{% include google_analytics.html %}
|
|
{% endif %}
|
|
|
|
</html>
|
|
|