mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 12:11:35 +01:00
fix: fix build error due to config change (#16)
This commit is contained in:
parent
968ba4178a
commit
6fc7951994
2 changed files with 7 additions and 6 deletions
|
|
@ -102,14 +102,15 @@
|
|||
<!-- Feeds -->
|
||||
{% if config.generate_feed %}
|
||||
<!---->
|
||||
{% if config.feed_filename == "atom.xml" %}
|
||||
{% if "atom.xml" in config.feed_filenames %}
|
||||
<link
|
||||
rel="alternate"
|
||||
type="application/atom+xml"
|
||||
title="Atom"
|
||||
href="{{ get_url(path=`atom.xml`) }}"
|
||||
/>
|
||||
{% elif config.feed_filename == "rss.xml" %}
|
||||
{% endif %}
|
||||
{% if "rss.xml" in config.feed_filenames %}
|
||||
<link
|
||||
rel="alternate"
|
||||
type="application/rss+xml"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue