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