the home site for me: also iteration 3 or 4 of my site
at v1.0 404 B view raw
1<!DOCTYPE html> 2<html lang="{% if page %}{{ page.lang }}{% else %}{{ config.default_language }}{% endif %}"> 3<head> 4 {% include "head.html" %} 5</head> 6<body> 7 <header> 8 {% include "header.html" %} 9 </header> 10 <main> 11 {% block content %} 12 {% endblock content %} 13 </main> 14 <footer> 15 {% include "footer.html" %} 16 </footer> 17</body> 18</html>