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

is there any multi inheritance support #35

Open
ooghry opened this issue Sep 3, 2017 · 0 comments
Open

is there any multi inheritance support #35

ooghry opened this issue Sep 3, 2017 · 0 comments

Comments

@ooghry
Copy link

ooghry commented Sep 3, 2017

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?

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

1 participant