1234567891011121314151617181920212223 |
- {#
- /**
- * @file
- * Default theme implementation to display a blog.
- *
- * Available variables:
- * - attributes: HTML attributes for the wrapper.
- * - title_prefix
- * - title_suffix
- *
- * @see template_preprocess_taxonomy_term()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes }}>
- {{ title_prefix }}
- {% if not page %}
- <h2><a href="{{ url }}">{{ name }}</a></h2>
- {% endif %}
- {{ title_suffix }}
- {{ content }}
- </div>
|