feed-icon.html.twig

Same filename in this branch
  1. 11.x core/themes/olivero/templates/misc/feed-icon.html.twig
  2. 11.x core/themes/stable9/templates/media-library/feed-icon.html.twig
Same filename and directory in other branches
  1. 9 core/themes/olivero/templates/misc/feed-icon.html.twig
  2. 9 core/themes/stable9/templates/media-library/feed-icon.html.twig
  3. 9 core/themes/stable/templates/misc/feed-icon.html.twig
  4. 9 core/modules/system/templates/feed-icon.html.twig
  5. 8.9.x core/themes/stable/templates/misc/feed-icon.html.twig
  6. 8.9.x core/modules/system/templates/feed-icon.html.twig
  7. 10 core/themes/olivero/templates/misc/feed-icon.html.twig
  8. 10 core/themes/stable9/templates/media-library/feed-icon.html.twig
  9. 10 core/modules/system/templates/feed-icon.html.twig

Default theme implementation 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.
5 theme calls to feed-icon.html.twig
AddFeedTest::testAttributeAdded in core/modules/system/tests/src/Kernel/Common/AddFeedTest.php
Tests that the rendered output contains specific attributes.
AddFeedTest::testFeedIconEscaping in core/modules/system/tests/src/Kernel/Common/AddFeedTest.php
Checks that special characters are correctly escaped.
Opml::attachTo in core/modules/views/src/Plugin/views/style/Opml.php
Rss::attachTo in core/modules/views/src/Plugin/views/style/Rss.php
SyndicateBlock::build in core/modules/node/src/Plugin/Block/SyndicateBlock.php
Builds and returns the renderable array for this block plugin.

File

core/modules/system/templates/feed-icon.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation 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. * @ingroup themeable
  14. */
  15. #}
  16. <a href="{{ url }}"{{ attributes.addClass('feed-icon') }}>
  17. {{ 'Subscribe to @title'|t({'@title': title}) }}
  18. </a>

Related topics


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.