From a3a95d7a9b020f9aeb66e17cab16e957f5a7cb5e Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 14 Feb 2024 11:38:24 +0400 Subject: Added space management --- _layouts/default.html | 10 +++++----- _layouts/page.html | 2 +- _layouts/post.html | 12 ++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html index ca65e32..b0937c7 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,20 +3,20 @@ layout: compress --- - + -{% include head.html %} +{%- include head.html -%}
- {% include navbar.html %} + {%- include navbar.html -%}
- {{ content }} + {{- content -}}
- {% include counter.html %} + {%- include counter.html -%} \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html index 84f03f7..d629bc5 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,4 +2,4 @@ layout: default --- -{{ content }} \ No newline at end of file +{{- content -}} \ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html index 9ff87ac..aa32f3e 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -3,24 +3,24 @@ layout: default ---
-

{{ page.title | default: site.title | strip | normalize_whitespace | xml_escape }}

+

{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}

Posted - + by - Valentin Popov + Valentin Popov  ‐ - {% include reading-time.html %} + {%- include reading-time.html -%}

- {{ content }} + {{- content -}}
- {% include comments.html %} + {%- include comments.html -%}
\ No newline at end of file -- cgit v1.2.3