node-add-list.html.twig

Same filename in this branch
  1. 11.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-add-list.html.twig
  2. 11.x core/themes/stable9/templates/content-edit/node-add-list.html.twig
  3. 11.x core/themes/claro/templates/node-add-list.html.twig
  4. 11.x core/modules/node/templates/node-add-list.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-add-list.html.twig
  2. 9 core/themes/stable9/templates/content-edit/node-add-list.html.twig
  3. 9 core/themes/seven/templates/node-add-list.html.twig
  4. 9 core/themes/claro/templates/node-add-list.html.twig
  5. 9 core/themes/bartik/templates/classy/content-edit/node-add-list.html.twig
  6. 9 core/themes/stable/templates/content-edit/node-add-list.html.twig
  7. 9 core/themes/starterkit_theme/templates/content-edit/node-add-list.html.twig
  8. 9 core/themes/classy/templates/content-edit/node-add-list.html.twig
  9. 9 core/modules/node/templates/node-add-list.html.twig
  10. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-add-list.html.twig
  11. 8.9.x core/themes/seven/templates/node-add-list.html.twig
  12. 8.9.x core/themes/claro/templates/node-add-list.html.twig
  13. 8.9.x core/themes/bartik/templates/classy/content-edit/node-add-list.html.twig
  14. 8.9.x core/themes/stable/templates/content-edit/node-add-list.html.twig
  15. 8.9.x core/themes/classy/templates/content-edit/node-add-list.html.twig
  16. 8.9.x core/modules/node/templates/node-add-list.html.twig
  17. 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-add-list.html.twig
  18. 10 core/themes/stable9/templates/content-edit/node-add-list.html.twig
  19. 10 core/themes/claro/templates/node-add-list.html.twig
  20. 10 core/themes/starterkit_theme/templates/content-edit/node-add-list.html.twig
  21. 10 core/modules/node/templates/node-add-list.html.twig

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 also

template_preprocess_node_add_list()

1 theme call to node-add-list.html.twig
NodeController::addPage in core/modules/node/src/Controller/NodeController.php
Displays add content links for available content types.

File

core/themes/starterkit_theme/templates/content-edit/node-add-list.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override to list node types available for adding content.
  5. *
  6. * This list is displayed on the Add content admin page.
  7. *
  8. * Available variables:
  9. * - types: A list of content types, each with the following properties:
  10. * - add_link: Link to create a piece of content of this type.
  11. * - description: Description of this type of content.
  12. *
  13. * @see template_preprocess_node_add_list()
  14. */
  15. #}
  16. {% if types is not empty %}
  17. <dl class="node-type-list">
  18. {% for type in types %}
  19. <dt>{{ type.add_link }}</dt>
  20. <dd>{{ type.description }}</dd>
  21. {% endfor %}
  22. </dl>
  23. {% else %}
  24. <p>
  25. {% set create_content = path('node.type_add') %}
  26. {% trans %}
  27. 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.
  28. {% endtrans %}
  29. </p>
  30. {% endif %}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.