1
0

Remove redundant <p> tag

This commit is contained in:
Emil Miler 2024-01-25 20:18:56 +01:00
parent f4df8d0d1d
commit 4fd68a25ff

View File

@ -13,7 +13,7 @@
{% macro print_article(page, author=true) %} {% macro print_article(page, author=true) %}
<article data-title="{{ page.title | lower }}"> <article data-title="{{ page.title | lower }}">
<h2><a href="{{ page.permalink }}">{{ page.title }}</a></h2> <h2><a href="{{ page.permalink }}">{{ page.title }}</a></h2>
<p>{{ page.summary | safe }}</p> {{ page.summary | safe }}
{{ self::page_info(page=page, author=author) }} {{ self::page_info(page=page, author=author) }}
</article> </article>
{% endmacro %} {% endmacro %}