fix: Use feed name defined in config, allow markdown and html in blog page description
Oh and, I changed my mind, Duckquill will continue existing ;)
This commit is contained in:
@ -3,7 +3,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{{ section.title }}</h1>
|
<h1>{{ section.title }}</h1>
|
||||||
|
|
||||||
<p>{{ section.description }}</p>
|
<p>{{ section.description | markdown | safe }}</p>
|
||||||
|
|
||||||
<small>
|
<small>
|
||||||
<a class="link-page" href="{{ get_url(path='tags') }}">Filter by tag</a>
|
<a class="link-page" href="{{ get_url(path='tags') }}">Filter by tag</a>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
</li>
|
</li>
|
||||||
{% endfor %} {% if config.extra.nav.show_feed %}
|
{% endfor %} {% if config.extra.nav.show_feed %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ get_url(path='atom.xml') }}">
|
<a href="{{ get_url(path='') }}/{{ config.feed_filename }}">
|
||||||
{% if config.extra.nav.icons %}
|
{% if config.extra.nav.icons %}
|
||||||
<i class="bi bi-rss"></i>
|
<i class="bi bi-rss"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Reference in New Issue
Block a user