Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation to present an aggregator feed. Chris@0: * Chris@0: * The contents are rendered above feed listings when browsing source feeds. Chris@0: * For example, "example.com/aggregator/sources/1". Chris@0: * Chris@0: * Available variables: 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: * - title_attributes: Same as attributes, except applied to the main title Chris@0: * tag that appears in the template. 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_feed() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {{ title_prefix }} Chris@0: {% if not full %} Chris@0: {{ title }} Chris@0: {% endif %} Chris@0: {{ title_suffix }} Chris@0: Chris@0: {{ content }}