farm-2.x-dev/modules/core/plan/templates/plan.html.twig
modules/core/plan/templates/plan.html.twig
{#
/**
* @file plan.html.twig
* Default theme implementation to present plan data.
*
* This template is used when viewing plan pages.
*
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_plan()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('plan') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>
