_layouts/default.html in jekyll-theme-simpleton-0.5.0 vs _layouts/default.html in jekyll-theme-simpleton-0.6.0
- old
+ new
@@ -1,13 +1,20 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
- {% include head.html %}
- <body>
- <div id="layout">
- {% include header.html %}
- <main id="main">
- {{ content }}
- </main> <!-- #main -->
- {% include footer.html %}
- </div> <!-- #layout -->
- </body>
+
+{%- include head.html -%}
+
+<body>
+ <div id="layout">
+
+ {%- include header.html -%}
+
+ <main id="main">
+ {{- content -}}
+ </main> <!-- #main -->
+
+ {%- include footer.html -%}
+
+ </div> <!-- #layout -->
+</body>
+
</html>