Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation to present a feed item in an aggregator page. Chris@0: * Chris@0: * Available variables: Chris@0: * - url: URL to the originating feed item. Chris@0: * - title: Title of the feed item. Chris@0: * - content: All field items. Use {{ content }} to print them all, Chris@0: * or print a subset such as {{ content.field_example }}. Use Chris@0: * {{ content|without('field_example') }} to temporarily suppress the printing Chris@0: * of a given element. Chris@0: * - attributes: HTML attributes for the wrapper. Chris@0: * - title_prefix: Additional output populated by modules, intended to be Chris@0: * displayed in front of the main title tag that appears in the template. Chris@0: * - title_suffix: Additional output populated by modules, intended to be Chris@0: * displayed after the main title tag that appears in the template. Chris@0: * Chris@0: * @see template_preprocess_aggregator_item() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: Chris@0: {{ title_prefix }} Chris@0:

Chris@0: {{ title }} Chris@0:

Chris@0: {{ title_suffix }} Chris@0: {{ content }} Chris@0: