I use GRAV as a blog. No problem with the feed plugin and syndication buttons on the page with the list of articles. But the url of these buttons are bad for all other pages: page with a complete article, contact page, author's page,... I think the problem is the variable {{ feed_url }}. I don't find where this vaiable is created or assigned in the feed plugin.
Could you help to find this variable?
At this time, I modified the file "sidebar.html.twig" in the template, like this :
{% if feed_url != 'blog' %}
{% set feed_url = 'blog' %}
{% endif %}
<div class="sidebar-content syndicate">
<h4>Syndicate</h4>
<a class="button" href="{{ base_url_relative }}/{{ feed_url }}.atom"><i class="fa fa-rss-square"></i> Atom 1.0</a>
<a class="button" href="{{ base_url_relative }}/{{ feed_url }}.rss"><i class="fa fa-rss-square"></i> RSS</a>
{% endif %}
I know this code is bad, but it works fine.
Thx