Is there any way to use multiple inheritance in PhalconPHP Volt? I'd like to do something like that:
// index.volt
<!DOCTYPE html>
<html>
<head>
...
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>
Next:
// layout.volt
{% extends 'index.volt' %}
{% block content %}
<div class='header'><div>
{% block actionContent %}{% endblock %}
<div class='footer'><div>
{% endblock %}
And then:
// actionView.volt
{% extends 'layout.volt' %}
{% block actionContent %}
Lorem Ipsum
{% endblock %}
It doesn't work because of Embedding blocks into other blocks is not supported...
I very want resolve this problem. Is it possible?