dfx-jekyll-mdl/_layouts/default.html
2015-07-19 12:09:16 -06:00

34 lines
987 B
HTML

<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% if site.header_type == 'drawer' %}
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--fixed-drawer">
{% include header_fixed.html %}
{% else %}
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
{% include header.html %}
{% endif %}
<main class="mdl-layout__content">
<div class="page-content">
{% if site.post_type == 'highlight' %}
{% include highlight_post.html %}
{% endif %}
{{ content }}
</div>
{% include footer.html %}
</main>
</div>
<!-- Material Design Lite js Library -->
<script type="text/javascript" src="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.min.js"></script>
{% if site.pagination_type == 'ops' %}
<script rel="javascript" src="{{ "/js/site.js" | prepend: site.baseurl }}"></script>
{% endif %}
</body>
</html>