From 8574988b216b4f081dfa191ae42a5e65c1db04de Mon Sep 17 00:00:00 2001 From: tymoteuszjozwiak Date: Tue, 17 Jan 2023 20:48:18 +0100 Subject: [PATCH] fix reading time space --- templates/post.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/post.html.twig b/templates/post.html.twig index 4e75131..47b2a41 100644 --- a/templates/post.html.twig +++ b/templates/post.html.twig @@ -5,7 +5,7 @@

{{ page.title }}

-

{{ page.date|date("d.m.Y H:i") }} {% if config.plugins.readingtime.enabled %} | {{ page.content|readingtime }} {% endif %}

+

{{ page.date|date("d.m.Y H:i") }}{% if config.plugins.readingtime.enabled %} | {{ page.content|readingtime }}{% endif %}

Tagi: {% for tag in page.taxonomy.tag %}{{ tag }} {% endfor %}

{{ page.content | raw }}