How do I extend my view to the main layout that is outside the module I' am using https://github.com/phalcon/mvc/tree/master/multiple-shared-layouts, skeleton and I want to extends the main shared layout like this:
{% extends "../../common/layouts/main.volt" %}
{% block content %}
    this works!
{% endblock %}and my main layout is:
<html>
    <head>
        <title>Common Layout</title>
    </head>
    <body>
            {% block content %}
            {% endblock %}
    </body>
</html>