]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/solarized/layout.html.twig
bdb1a6fa265d61cac5163d2cab9659bed4199401
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / solarized / 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:themes:_global/_head_icon.html.twig" %}
15
16 <link rel="stylesheet" href="{{ asset('themes/_global/css/knacss.css') }}" media="all">
17 <link rel="stylesheet" href="{{ asset('themes/_global/css/style.css') }}" media="all">
18 <link rel="stylesheet" href="{{ asset('themes/solarized/css/style-solarized.css') }}" media="all">
19
20 <script src="{{ asset('themes/_global/js/jquery-2.0.3.min.js') }}"></script>
21 <script src="{{ asset('themes/_global/js/autoClose.js') }}"></script>
22 <script src="{{ asset('themes/_global/js/saveLink.js') }}"></script>
23 <script src="{{ asset('themes/_global/js/popupForm.js') }}"></script>
24 <script src="{{ asset('bundles/wallabagcore/js/bookmarklet.js') }}"></script>
25 </head>
26 <body>
27 {% include "WallabagCoreBundle::_top.html.twig" %}
28 <div id="main">
29 {% block menu %}{% endblock %}
30 {% block precontent %}{% endblock %}
31 {{ include("WallabagCoreBundle::_messages.html.twig", {'flashMessages': app.session.flashbag.get('notice')}) }}
32 <div id="content" class="w600p center">
33 {% block content %}{% endblock %}
34 </div>
35 </div>
36 {% include "WallabagCoreBundle::_footer.html.twig" %}
37 </body>
38 </html>