content/theme/templates/index.html (22 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>{{SITENAME}}</title> {% include "styles.html" %} </head> <body class="d-flex flex-column h-100"> <main class="flex-shrink-0"> <div> {% include "menu.html" %} {% include "frontpage.html" %} {% include "footer.html" %} </div> </main> <script>hljs.initHighlightingOnLoad();</script> </body> </html> {% endblock %}