layout_paragraphs-1.0.x-dev/tests/modules/layout_paragraphs_custom_host_entity_test/templates/lp-host-entity.html.twig
tests/modules/layout_paragraphs_custom_host_entity_test/templates/lp-host-entity.html.twig
{#
/**
* @file
* Default theme implementation to present a lp host entity entity.
*
* This template is used when viewing a registered lp host entity's page,
* e.g., /admin/content/lp-host-entity)/123. 123 being the lp host entity's ID.
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* print a subset such as 'content.title'.
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_lp_host_entity()
*/
#}
<article{{ attributes }}>
{% if content %}
{{- content -}}
{% endif %}
</article>
