]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/baggy/layout.html.twig
Add LiipThemeBundle
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / baggy / layout.html.twig
CommitLineData
32da2a70
J
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/baggy/css/ratatouille.css') }}" media="all">
17 <link rel="stylesheet" href="{{ asset('themes/baggy/css/font.css') }}" media="all">
18 <link rel="stylesheet" href="{{ asset('themes/baggy/css/main.css') }}" media="all">
19 <link rel="stylesheet" href="{{ asset('themes/baggy/css/messages.css') }}" media="all">
20 <link rel="stylesheet" href="{{ asset('themes/baggy/css/print.css') }}" media="print">
21
22 <script src="{{ asset('themes/_global/js/jquery-2.0.3.min.js') }}"></script>
23 <script src="{{ asset('themes/_global/js/autoClose.js') }}"></script>
24 <script src="{{ asset('themes/baggy/js/jquery.cookie.js') }}"></script>
25 <script src="{{ asset('themes/baggy/js/init.js') }}"></script>
26 <script src="{{ asset('themes/_global/js/saveLink.js') }}"></script>
27 <script src="{{ asset('themes/_global/js/popupForm.js') }}"></script>
28 <script src="{{ asset('themes/baggy/js/closeMessage.js') }}"></script>
29 <script src="{{ asset('bundles/wallabagcore/js/bookmarklet.js') }}"></script>
30 </head>
31 <body>
32 {% include "WallabagCoreBundle::_top.html.twig" %}
33 <div id="main">
34 {% block menu %}{% endblock %}
35 {% block precontent %}{% endblock %}
36 {{ include("WallabagCoreBundle::_messages.html.twig", {'flashMessages': app.session.flashbag.get('notice')}) }}
37 <div id="content" class="w600p center">
38 {% block content %}{% endblock %}
39 </div>
40 </div>
41 {% include "WallabagCoreBundle::_footer.html.twig" %}
42 </body>
43</html>