cmd: fix wrong rss uri for per-topic rss

This commit is contained in:
thisLight 2021-08-30 15:37:44 +08:00
parent 01ffdc6525
commit c79d40df35
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
<a href="{{ full_url_for(category_rss.prefix + rss_name + category_rss.atom_suffix) }}">Feed (Atom)</a>
{% endif %}
{% if category_rss.rss_suffix %}
<a href="{{ full_url_for(category_rss.rss_suffix + rss_name + category_rss.rss_suffix) }}">Feed (RSS)</a>
<a href="{{ full_url_for(category_rss.prefix + rss_name + category_rss.rss_suffix) }}">Feed (RSS)</a>
{% endif %}
</div>
{% endif %}

View file

@ -18,7 +18,7 @@
<a href="{{ full_url_for(tag_rss.prefix + rss_name + tag_rss.atom_suffix) }}">Feed (Atom)</a>
{% endif %}
{% if tag_rss.rss_suffix %}
<a href="{{ full_url_for(tag_rss.rss_suffix + rss_name + tag_rss.rss_suffix) }}">Feed (RSS)</a>
<a href="{{ full_url_for(tag_rss.prefix + rss_name + tag_rss.rss_suffix) }}">Feed (RSS)</a>
{% endif %}
</div>
{% endif %}