_layouts/default.html in yefeme-0.1.5 vs _layouts/default.html in yefeme-0.1.6
- old
+ new
@@ -1,11 +1,15 @@
<!DOCTYPE html>
<html lang={{ page.lang | default: site.lang | default: "en" }}">
{% include head.html %}
<body>
- {% include header.html %}
<div class="wrapper">
- {{ content }}
+ {% include header.html %}
+ <main>
+ <div class="content">
+ {{ content }}
+ </div>
+ </main>
+ {% include footer.html %}
</div>
- {% include footer.html %}
</body>
</html>