-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Atom+RSS links at the bottom of the blog index page
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{% load wagtailroutablepage_tags %} | ||
|
||
<div class="fr-mt-2w"> | ||
<ul class="fr-btns-group fr-btns-group--inline-sm fr-btns-group--icon-left fr-btns-group--right"> | ||
<li> | ||
<a class="fr-btn fr-btn--tertiary-no-outline fr-btn--icon-left fr-icon-rss-fill" | ||
href="{% routablepageurl page 'atom_feed' %}">Atom</a> | ||
</li> | ||
<li> | ||
<a class="fr-btn fr-btn--tertiary-no-outline fr-btn--icon-left fr-icon-rss-fill" | ||
href="{% routablepageurl page 'rss_feed' %}">RSS</a> | ||
</li> | ||
</ul> | ||
</div> |
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