Skip to content

Commit

Permalink
Fix broken RSS link in footer
Browse files Browse the repository at this point in the history
Link was pointing to `news/rss.xml` while it should be `news/atom.xml`.

Closes libimobiledevice#6
  • Loading branch information
GeckoEidechse authored Nov 14, 2023
1 parent 20b17e5 commit 03824e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/partials/footer.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
{% endif %}

<li class="nav-item">
<a class="nav-link" href="{{ url('news/rss.xml') }}" title="Subscribe to our news" target="_blank" rel="noopener"><i class="fas fa-rss"></i></a>
<a class="nav-link" href="{{ url('news/atom.xml') }}" title="Subscribe to our news" target="_blank" rel="noopener"><i class="fas fa-rss"></i></a>
</li>
</ul>
</div>
Expand Down

0 comments on commit 03824e6

Please sign in to comment.