Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a025860

Browse files
committed
minor EasyCorp#3444 [Doc] Fixed some template paths (javiereguiluz)
This PR was merged into the 3.0.x-dev branch. Discussion ---------- [Doc] Fixed some template paths Fixes EasyCorp#3440. Commits ------- 73c4e22 [Doc] Fixed some template paths
2 parents 42fd7bb + 73c4e22 commit a025860

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

doc/design.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ must use a special syntax inside ``extends`` to avoid an infinite loop:
6868

6969
.. code-block:: twig
7070
71-
{# templates/bundles/EasyAdminBundle/page/layout.html.twig #}
71+
{# templates/bundles/EasyAdminBundle/layout.html.twig #}
7272
7373
{# DON'T DO THIS: it will cause an infinite loop #}
74-
{% extends '@EasyAdmin/page/layout.html.twig' %}
74+
{% extends '@EasyAdmin/layout.html.twig' %}
7575
7676
{# DO THIS: the '!' symbol tells Symfony to extend from the original template #}
77-
{% extends '@!EasyAdmin/page/layout.html.twig' %}
77+
{% extends '@!EasyAdmin/layout.html.twig' %}
7878
7979
{% block sidebar %}
8080
{# ... #}

0 commit comments

Comments
 (0)