]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/WallabagBundle/Resources/views/layout.html.twig
4a3f0f5cb0d5502705868b6c2cdc6916d5a8669b
[github/wallabag/wallabag.git] / src / WallabagBundle / Resources / views / layout.html.twig
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 lang="en">
7 <head>
8 <meta name="viewport" content="initial-scale=1.0">
9 <meta charset="utf-8">
10 <!--[if IE]>
11 <meta http-equiv="X-UA-Compatible" content="IE=10">
12 <![endif]-->
13 <title>{% block title %}{% endblock %} - wallabag</title>
14 {% include "WallabagBundle::_head.html.twig" %}
15 {% include "WallabagBundle::_bookmarklet.html.twig" %}
16 </head>
17 <body>
18 {% include "WallabagBundle::_top.html.twig" %}
19 <div id="main">
20 {% block menu %}{% endblock %}
21 {% block precontent %}{% endblock %}
22 {% block messages %}
23 {% include "WallabagBundle::_messages.html.twig" %}
24 {% endblock %}
25 <div id="content" class="w600p center">
26 {% block content %}{% endblock %}
27 </div>
28 </div>
29 {% include "WallabagBundle::_footer.html.twig" %}
30 </body>
31 </html>