aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/layout.twig
blob: b86983da27d9a127f814528da825c15c779f97b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]-->
<!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<html>
    <head>
        <meta name="viewport" content="initial-scale=1.0">
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=10">
        <title>{% block title %}{% endblock %} - poche</title>
{% include '_head.twig' %}
{% include '_bookmarklet.twig' %}
    </head>
    <body>
        {% include '_top.twig' %}
        <div id="main">
            {% block menu %}{% endblock %}
            {% block precontent %}{% endblock %}
            {% block messages %}
            {% include '_messages.twig' %}
            {% endblock %}
            <div id="content" class="w600p center">
            {% block content %}{% endblock %}
            </div>
        </div>
{% include '_footer.twig' %}
    </body>
</html>