0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-03 16:10:26 +03:00

Added space management

This commit is contained in:
2024-02-14 11:38:24 +04:00
parent 2db3902198
commit a3a95d7a9b
13 changed files with 51 additions and 51 deletions

View File

@ -3,20 +3,20 @@ layout: compress
---
<!DOCTYPE html>
<html lang="{{ site.lang | strip | slugify | xml_escape }}">
<html lang="{{- site.lang | strip | slugify | xml_escape -}}">
{% include head.html %}
{%- include head.html -%}
<body>
<header>
{% include navbar.html %}
{%- include navbar.html -%}
</header>
<article>
{{ content }}
{{- content -}}
</article>
{% include counter.html %}
{%- include counter.html -%}
</body>
</html>

View File

@ -2,4 +2,4 @@
layout: default
---
{{ content }}
{{- content -}}

View File

@ -3,24 +3,24 @@ layout: default
---
<section style="text-align: center;">
<h1>{{ page.title | default: site.title | strip | normalize_whitespace | xml_escape }}</h1>
<h1>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</h1>
<p>
<small>
Posted
<time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: '%B %e, %Y' | strip | normalize_whitespace | xml_escape }}</time>
<time datetime="{{- page.date | date_to_xmlschema -}}">{{- page.date | date: '%B %e, %Y' | strip | normalize_whitespace | xml_escape -}}</time>
by
<a href="mailto:{{ site.email | strip | url_encode }}?subject={{ page.title | default: site.title | strip | normalize_whitespace | xml_escape }}">Valentin Popov</a>
<a href="mailto:{{- site.email | strip | url_encode -}}?subject={{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}">Valentin Popov</a>
&nbsp;&hyphen;
<strong>{% include reading-time.html %}</strong>
<strong>{%- include reading-time.html -%}</strong>
</small>
</p>
</section>
<section>
{{ content }}
{{- content -}}
</section>
<section>
{% include comments.html %}
{%- include comments.html -%}
</section>