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.
31 lines
876 B
31 lines
876 B
1 year ago
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Theme override to list node types available for adding content.
|
||
|
*
|
||
|
* This list is displayed on the Add content admin page.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - types: A list of content types, each with the following properties:
|
||
|
* - add_link: Link to create a piece of content of this type.
|
||
|
* - description: Description of this type of content.
|
||
|
*
|
||
|
* @see template_preprocess_node_add_list()
|
||
|
*/
|
||
|
#}
|
||
|
{% if types is not empty %}
|
||
|
<dl class="node-type-list">
|
||
|
{% for type in types %}
|
||
|
<dt>{{ type.add_link }}</dt>
|
||
|
<dd>{{ type.description }}</dd>
|
||
|
{% endfor %}
|
||
|
</dl>
|
||
|
{% else %}
|
||
|
<p>
|
||
|
{% set create_content = path('node.type_add') %}
|
||
|
{% trans %}
|
||
|
You have not created any content types yet. Go to the <a href="{{ create_content }}">content type creation page</a> to add a new content type.
|
||
|
{% endtrans %}
|
||
|
</p>
|
||
|
{% endif %}
|