default.html 391 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  3. {% include head.html %}
  4. <body class="topBarDisabled">
  5. <div class="container-fluid">
  6. {% include header.html %}
  7. <div class="row-fluid">
  8. {% include navigation.html %}
  9. <main id="bodyColumn" class="span10" >
  10. {{ content }}
  11. </main>
  12. </div>
  13. </div>
  14. <hr/>
  15. {% include footer.html %}
  16. </body>
  17. </html>