diff --git a/docs/content/documentation/templates/feeds/index.md b/docs/content/documentation/templates/feeds/index.md index fa95f20b..e1331923 100644 --- a/docs/content/documentation/templates/feeds/index.md +++ b/docs/content/documentation/templates/feeds/index.md @@ -48,7 +48,7 @@ As an example this is how it looks like using [Firefox](https://en.wikipedia.org You can enable posts autodiscovery modifying your blog `base.html` template adding the following code in between the `` tags. ```html {% block rss %} - + {% endblock %} ``` You can as well use an Atom feed using `type="application/atom+xml"` and `path="atom.xml"`. @@ -59,7 +59,7 @@ In order to enable the tag feeds as well, you can overload the `block rss` using ```html {% block rss %} {% set rss_path = "tags/" ~ term.name ~ "/rss.xml" %} - + {% endblock rss %} ``` Each tag page will refer to it's dedicated feed.