renderer added, storage + renderer interfaces renamed to Interface

This commit is contained in:
2017-02-11 20:36:01 +01:00
parent d63dba41a8
commit e92d895690
13 changed files with 130 additions and 10 deletions

0
views/base.html.twig Normal file
View File

13
views/layout.html.twig Normal file
View File

@ -0,0 +1,13 @@
{% extends "base.html.twig" %}
{% block css %}
{% endblock %}
{% block body %}
{% block nav %}{% endblock %}
{% block header %}{% endblock %}
{% block left %}{% endblock %}
{% block middle %}{% endblock %}
{% block right %}{% endblock %}
{% block footer %}{% endblock %}
{% endblock %}
{% block js %}
{% endblock %}