default_print.html 439 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <html>
  4. <head>
  5. {% include head_print.html %}
  6. </head>
  7. <body class="{% if page.type == "title"%}title{% elsif page.type == "frontmatter" %}frontmatter{% elsif page.type == "first_page" %}first_page{% endif %} print">
  8. <!-- Page Content -->
  9. <div class="container">
  10. <!-- Content Column -->
  11. <div class="col-md-9">
  12. {{content}}
  13. </div>
  14. </div> <!-- /.container -->
  15. </body>
  16. </html>