We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rss link in doesn't show while theme.rss is empty.
theme.rss
Move code
{% if theme.rss !== false %} {% if theme.rss %} {% set feed_uri = theme.rss %} {% elif config.feed and config.feed.path %} {% set feed_uri = config.root + config.feed.path %} {% endif %} {% endif %}
from header.swig to head.swig. At the same time, simplify the code:
header.swig
head.swig
{% if theme.rss == '' and config.feed and config.feed.path %} {% set theme.rss = config.root + config.feed.path %} {% endif %}
The text was updated successfully, but these errors were encountered:
Merge pull request #12 from iissnan/master
717ec68
Update from original.
Successfully merging a pull request may close this issue.
Rss link in doesn't show while
theme.rss
is empty.Move code
from
header.swig
tohead.swig
. At the same time, simplify the code:The text was updated successfully, but these errors were encountered: