adding MDL html structure

This commit is contained in:
Byron Corrales 2015-07-11 13:00:36 -06:00
parent 9e5f1c4863
commit c55d91da8f
7 changed files with 124 additions and 325 deletions

View file

@ -5,16 +5,21 @@
<body>
{% include header.html %}
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<div class="page-content">
<div class="wrapper">
{{ content }}
</div>
{% include header.html %}
<main class="mdl-layout__content">
<div class="page-content">
{{ content }}
</div>
</main>
{% include footer.html %}
</div>
{% include footer.html %}
<!-- Material Design Lite js Library -->
<script type="text/javascript" src="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.min.js"></script>
</body>