removing gh-pages branch and putting everything in master
This commit is contained in:
65
_layouts/default.html
Normal file
65
_layouts/default.html
Normal file
@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
<head>
|
||||
|
||||
{% include head.html %}
|
||||
|
||||
{% if page.video == true %}
|
||||
|
||||
<link href="https://vjs.zencdn.net/4.12/video-js.css" rel="stylesheet">
|
||||
<script src="https://vjs.zencdn.net/4.12/video.js"></script>
|
||||
{%comment%}
|
||||
<!--
|
||||
if you want the video js and css local instead of cdn, use the following code instead of the cdn links above.
|
||||
-->
|
||||
<link href="{{ "/js/video-js/video-js.min.css" | prepend:site.baseurl }}" rel="stylesheet" type="text/css"></link>
|
||||
<script src="{{ "/js/video-js/video.js" | prepend:site.baseurl }}"></script>
|
||||
<script> videojs.options.flash.swf = "{{site.baseurl}}/js/video-js/video-js.swf";</script>
|
||||
{%endcomment%}
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% if page.datatable == true %}
|
||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.5/css/jquery.dataTables.css">
|
||||
|
||||
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.5/js/jquery.dataTables.js"></script>
|
||||
{% endif %}
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
{% include topnav.html %}
|
||||
|
||||
|
||||
<!-- Page Content -->
|
||||
<div class="container">
|
||||
<div class="col-lg-12"> </div>
|
||||
|
||||
|
||||
|
||||
{% unless page.sidebar == "none" %}
|
||||
|
||||
{% include sidebar.html %}
|
||||
|
||||
{% endunless %}
|
||||
|
||||
<!-- Content Column -->
|
||||
<div class="col-md-9">
|
||||
|
||||
{{content}}
|
||||
</div><!-- /.row -->
|
||||
|
||||
<hr>
|
||||
|
||||
</div> <!-- /.container -->
|
||||
|
||||
</body>
|
||||
{% if site.google_analytics %}
|
||||
{% include google_analytics.html %}
|
||||
{% endif %}
|
||||
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user