-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rss_link variable on html template
- Loading branch information
1 parent
f00be41
commit 40d3be6
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"> | ||
|
@@ -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> | ||
|