Howdy.
I'm on Mezzanine 4.2.2 and Django 1.10.4.
I see some remnants of RSS throughout the code, but I can't seem to get it working.
I assume it needs no other config, it simply works.
I tried adding this to my base.html, per what I found within the Mezzanine base.html file:
<link rel="alternate" type="application/rss+xml" title="RSS" href="{% url "blog_post_feed" "rss" %}">
<link rel="alternate" type="application/atom+xml" title="Atom" href="{% url "blog_post_feed" "atom" %}">
However, that didn't work, it's throwing a 404 (when I view source and go to resulting url).
I've tried /feed.xml as well, and that was a 404.
Does RSS need to be enabled for it to work? Or do I need a template for this? I couldn't find something clear in the docs or on Google.
Thank you.