camaleon-8.x-1.x-dev/templates/content/aggregator-item.html.twig
templates/content/aggregator-item.html.twig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | {# /** * @file * Theme override to present a feed item in an aggregator page. * * Available variables: * - url: URL to the originating feed item. * - title: Title of the feed item. * - content: All field items. Use {{ content }} to print them all, * or print a subset such as {{ content.field_example }}. Use * {{ content|without('field_example') }} to temporarily suppress the printing * of a given element. * - attributes: HTML attributes for the wrapper. * - title_prefix: Additional output populated by modules, intended to be * displayed in front of the main title tag that appears in the template. * - title_suffix: Additional output populated by modules, intended to be * displayed after the main title tag that appears in the template. * * @see template_preprocess_aggregator_item() */ #} <article{{ attributes.addClass( 'aggregator-item' ) }}> {{ title_prefix }} <h3 class = "feed-item-title" > <a href= "{{ url }}" >{{ title }}</a> </h3> {{ title_suffix }} {{ content }} </article> |