Skip to content

Commit

Permalink
Fix rss_link variable on html template
Browse files Browse the repository at this point in the history
  • Loading branch information
marvil07-adapt committed Nov 29, 2023
1 parent f00be41 commit 40d3be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/contributions.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>Open Source Contributions by {{ organization.name }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if config.rss_link|default(true) %}
{% if config.html.rss_link|default(true) %}
<link href="rss.xml" rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed for Open Source Contributions by {{ organization.name }}" />
{% endif %}
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
Expand All @@ -14,7 +14,7 @@
<header class="container p-5">
<h1 class="text-center">Open Source Contributions by {{ organization.name }}</h1>
<p class="lead text-muted">{{ organization.introduction }}</p>
{% if config.rss_link|default(true) %}
{% if config.html.rss_link|default(true) %}
<aside>
<a href="rss.xml">RSS 2.0 Feed</a>
</aside>
Expand Down

0 comments on commit 40d3be6

Please sign in to comment.