]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/layout.html.twig
e9ccc58c5713d24389e1c7affcf3b4b87b2e3ea3
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / 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 "WallabagCoreBundle::_head.html.twig" %}
15 </head>
16 <body>
17 {% include "WallabagCoreBundle::_top.html.twig" %}
18 <div id="main">
19 {% block menu %}{% endblock %}
20 {% block precontent %}{% endblock %}
21 {% for flashMessage in app.session.flashbag.get('notice') %}
22 <div class="flash-notice">
23 {{ flashMessage }}
24 </div>
25 {% endfor %}
26 <div id="content" class="w600p center">
27 {% block content %}{% endblock %}
28 </div>
29 </div>
30 {% include "WallabagCoreBundle::_footer.html.twig" %}
31 </body>
32 </html>