]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tpl/layout.twig
share email +twitter / class messages
[github/wallabag/wallabag.git] / tpl / layout.twig
CommitLineData
a4565e88
NL
1<!DOCTYPE html>
2<!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]-->
3<!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]-->
4<!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]-->
5<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
6<html>
7 <head>
8 <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
9 <meta charset="utf-8">
10 <meta http-equiv="X-UA-Compatible" content="IE=10">
11 <title>{% block title %}{% endblock %} - poche</title>
8cbb2a88
NL
12 {% include '_head.twig' %}
13 {% include '_bookmarklet.twig' %}
a4565e88
NL
14 </head>
15 <body class="light-style">
8cbb2a88 16 {% include '_top.twig' %}
a4565e88
NL
17 <div id="main">
18 {% block menu %}{% endblock %}
19 {% block precontent %}{% endblock %}
55821e04 20 {% block messages %}{% endblock %}
a4565e88
NL
21 {% block content %}{% endblock %}
22 {% block js %}{% endblock %}
23 </div>
8cbb2a88 24 {% include '_footer.twig' %}
a4565e88
NL
25 </body>
26</html>