Skip to content

Commit

Permalink
fix: mauvaise URL pour le JSON feed (#1094)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts authored Mar 21, 2024
2 parents be9e4a1 + d56dee8 commit b8769e1
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions content/theme/partials/json_feed.html.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@ voir : https://github.com/squidfunk/mkdocs-material/pull/6907#issuecomment-19988
et https://guts.github.io/mkdocs-rss-plugin/configuration/#json_feed_enabled
#}
{% if "rss" in config.plugins %}
<link
rel="alternate"
type="application/feed+json"
title="JSON feed"
href="{{ 'feed_rss_created.json' | url }}"
/>
<link
rel="alternate"
type="application/feed+json"
title="JSON feed of updated content"
href="{{ 'feed_rss_updated.json' | url }}"
<link
rel="alternate"
type="application/feed+json"
title="JSON feed" href="{{ 'feed_json_created.json' | url }}"
/>
<link
rel="alternate"
type="application/feed+json"
title="JSON feed of updated content"
href="{{ 'feed_json_updated.json' | url }}" />
{% endif %}

0 comments on commit b8769e1

Please sign in to comment.