Skip to content

Commit

Permalink
Compress in default layout
Browse files Browse the repository at this point in the history
  • Loading branch information
sylhare committed Dec 14, 2023
1 parent 40391aa commit df05271
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
https://github.com/sylhare/Type-on-Strap/blob/master/LICENSE
-->
<html lang="en">
{% include default/head.liquid %}
{% capture _head %}{% include default/head.liquid %}{% endcapture %}
{{ _head | split: " " | join: " "}}
<body>
{% include default/navbar.liquid %}
{% capture _navbar %}{% include default/navbar.liquid %}{% endcapture %}
{{ _navbar | split: " " | join: " "}}
<div class="content">
{{ content }}
</div>
{% include default/footer.liquid %}
{% capture _footer %}{% include default/footer.liquid %}{% endcapture %}
{{ _footer | split: " " | join: " "}}
</body>
</html>

0 comments on commit df05271

Please sign in to comment.