- πΊπ¦Ukraine vlad.dancer Kyiv
Well, it seems after radix update I received same error.
The fix is quite obvious use full file name:{% extends '@radix/content/node.html.twig' %}
Using regular expression
(?<!html).twig' %}
I found couple of places where file names are used w/o "html" part:- radix/src/kits/default/templates/content/node.html.twig:
{% extends '@RADIX_SUBTHEME_MACHINE_NAME/node/node.twig' %}
- radix/templates/dataset/table.html.twig:
{% include '@radix/table/table.twig' %}
- radix/templates/menu/menu.html.twig:
{% include '@radix/nav/nav.twig' %}
Looks like we need use suffix .html.twig for templates: https://symfony.com/doc/current/templates.html#template-inheritance-and-...
- radix/src/kits/default/templates/content/node.html.twig: