diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/index.html b/templates/index.html index 9144fc0..746f8ab 100644 --- a/templates/index.html +++ b/templates/index.html @@ -67,8 +67,8 @@ <title>{{ config.title }}</title> {% endif %} - {% if config.generate_feed %} - <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path=config.feed_filename, trailing_slash=false) }}"> + {% if config.generate_feeds %} + <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path=config.feed_filenames[0], trailing_slash=false) }}"> {% endif %} <body id="page"> @@ -77,7 +77,7 @@ {% endblock header %} {% block title %} - <div id="spotlight" class="animated fadeIn"> + <div id="spotlight" class=""> <div id="home-center"> <h1 id="home-title">{{ config.title }}</h1> <p id="home-subtitle">{{ config.extra.home_subtitle }}</p> @@ -100,9 +100,9 @@ <p>© {{ now() | date(format="%Y") }} <a href="{{ config.base_url }}">{{ config.extra.author.name }}</a> - {% if config.generate_feed %} + {% if config.generate_feeds %} · - <a href="{{ get_url(path=config.feed_filename, trailing_slash=false) }}" target="_blank" title="rss"> + <a href="{{ get_url(path=config.feed_filenames[0], trailing_slash=false) }}" target="_blank" title="rss"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"> |