Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extends directive not working porperly #895

Open
marmz opened this issue Jul 11, 2024 · 1 comment
Open

Extends directive not working porperly #895

marmz opened this issue Jul 11, 2024 · 1 comment

Comments

@marmz
Copy link

marmz commented Jul 11, 2024

<!-- test.twig -->
{% extends "rocks.twig" %}
 100%


<!-- rocks.twig -->
{{ name}} rocks!


<!-- index.html -->
<script>
            const template = twig({
                href: 'test.twig',
                async: false
             });
            
            alert( template.render({name: 'Dario'}) );
</script>


<!-- result alert message -->
Dario rocks!


<!-- instead of -->
Dario rocks! 100%

So it seems that extending template is ignoring its own code after "extends" directive.

@willrowe
Copy link
Collaborator

@marmz have you confirmed that this works as expected in TwigPHP?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants