You are here

feed-icon.html.twig in Drupal 10

Theme override for a feed icon.

Available variables:

  • url: An internal system path or a fully qualified external URL of the feed.
  • title: Title of the feed for describing the feed on the subscribe link.
  • attributes: Remaining HTML attributes for the feed link.
    • title: A descriptive title of the feed link.
    • class: HTML classes to be applied to the feed link.

File

core/themes/stable/templates/misc/feed-icon.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a feed icon.
  5. *
  6. * Available variables:
  7. * - url: An internal system path or a fully qualified external URL of the feed.
  8. * - title: Title of the feed for describing the feed on the subscribe link.
  9. * - attributes: Remaining HTML attributes for the feed link.
  10. * - title: A descriptive title of the feed link.
  11. * - class: HTML classes to be applied to the feed link.
  12. */
  13. #}
  14. <a href="{{ url }}"{{ attributes.addClass('feed-icon') }}>
  15. {{ 'Subscribe to @title'|t({'@title': title}) }}
  16. </a>