cc-1.0.x-dev/modules/cc_account/templates/cc-account-add-list.html.twig
modules/cc_account/templates/cc-account-add-list.html.twig
{#
/**
* @file
* Default theme implementation to list account types available for adding accounts.
*
* Available variables:
* - content: A list of content types.
*
* @see template_preprocess_cc_account_add_list()
*
* @ingroup themeable
*/
#}
{% if content %}
<dl>
{% for type in content %}
<dt>{{ type.link }}</dt>
<dd>{{ type.description }}</dd>
{% endfor %}
</dl>
{% endif %}
