You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
607 B
23 lines
607 B
{# |
|
/** |
|
* @file |
|
* Default theme implementation to present a list of custom content entity types/bundles. |
|
* |
|
* Available variables: |
|
* - types: A collection of all the available custom entity types/bundles. |
|
* Each type/bundle contains the following: |
|
* - link: A link to add a content entity of this type. |
|
* - description: A description of this content entity types/bundle. |
|
* |
|
* @see template_preprocess_fedora_resource_content_add_list() |
|
* |
|
* @ingroup themeable |
|
*/ |
|
#} |
|
{% spaceless %} |
|
<dl> |
|
{% for type in types %} |
|
<dt>{{ type.link }}</dt> |
|
{% endfor %} |
|
</dl> |
|
{% endspaceless %}
|
|
|