theme/templates/page.html (21 lines of code) (raw):

{% block head %} <!doctype html> <html class="no-js" lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{{ page.title }} - {{SITENAME}}</title> {% include "styles.html" %} </head> <body style="background: #C9B191;"> {% include "menu.html" %} {% include "generic.html" %} {% include "footer.html" %} <script src="{{SITEURL}}/theme/js/vendor/jquery.js"></script> <script src="{{SITEURL}}/theme/js/vendor/what-input.js"></script> <script src="{{SITEURL}}/theme/js/vendor/foundation.js"></script> <script src="{{SITEURL}}/theme/js/app.js"></script> </body> </html> {% endblock %}