geo-coop/web/themes/custom/geofresco/src/templates/layout/ds--1col--node-card.html.twig
2019-09-29 17:19:03 -04:00

24 lines
577 B
Twig

{#
/**
* @file
* Display Suite 1 column template.
*
* Available variables:
* - ds_content_wrapper: wrapper around content
* - attributes: content region attributes
* - ds_content: content region
*/
#}
<{{ ds_content_wrapper }}{{ attributes.addClass('ds-1col', 'clearfix') }}>
{{ title_suffix.contextual_links }}
{% set image = ds_content.field_image|render %}
{% if image %}
{{ image }}
{% else %}
<figure class="background-replacement-for-no-image image"></figure>
{% endif %}
{{ ds_content|without('field_image') }}
</{{ ds_content_wrapper }}>