From a4c43245380aaa3695fadfc0ac23001f435d3bd7 Mon Sep 17 00:00:00 2001 From: b1ek Date: Sat, 24 Feb 2024 18:23:29 +1000 Subject: [PATCH] print description inside a blog post --- templates/custom/blog-post.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/templates/custom/blog-post.html b/templates/custom/blog-post.html index b65e6c5..9ddbb28 100644 --- a/templates/custom/blog-post.html +++ b/templates/custom/blog-post.html @@ -2,7 +2,10 @@ {% block content %} -

{{ page.title }}

+

{{ page.title }}

+{% if page.description %} +

{{ page.description }}

+{% endif %} @@ -12,4 +15,4 @@ {{ page.content | safe }} -{% endblock content %} \ No newline at end of file +{% endblock content %}