We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there I have template like this:
//base.twigLike <!DOCTYPE html> <html> <head> {% block head %} <link rel="stylesheet" href="style.css" /> <title>{% block title %}{% endblock %} - My Webpage</title> {% endblock %} </head> <body> {% block body%}{% endblock %} </body> </html> //admin.twigLike {% extends "base.twigLike" %} {% block body%} <div>{% block menu%}{% endblock %} </div> <div>{% block conent%}{% endblock %} </div> {% endblock %} //page.twigLike {% extends "admin.twigLike" %} //some other stuff
in quicktemplate is there any way to multi inheritance?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there
I have template like this:
in quicktemplate is there any way to multi inheritance?
The text was updated successfully, but these errors were encountered: