]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/base.html.twig
Merge pull request #3606 from mritzmann/master
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / base.html.twig
CommitLineData
495aecfe
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]-->
cee28dc6 6<html>
495aecfe
J
7 <head>
8 {% block head %}
9 <meta name="viewport" content="initial-scale=1.0">
10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11 <!--[if IE]>
12 <meta http-equiv="X-UA-Compatible" content="IE=10">
13 <![endif]-->
14
9ff628ca
KD
15 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-152.png') }}" sizes="152x152">
16 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-152.png') }}" sizes="152x152">
495aecfe 17
9ff628ca
KD
18 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-144.png') }}" sizes="144x144">
19 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-144.png') }}" sizes="144x144">
495aecfe 20
9ff628ca
KD
21 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-120.png') }}" sizes="120x120">
22 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-120.png') }}" sizes="120x120">
495aecfe 23
9ff628ca
KD
24 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-114.png') }}" sizes="114x114">
25 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-114.png') }}" sizes="114x114">
495aecfe 26
9ff628ca
KD
27 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-76.png') }}" sizes="76x76">
28 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-76.png') }}" sizes="76x76">
495aecfe 29
9ff628ca
KD
30 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-72.png') }}" sizes="72x72">
31 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-72.png') }}" sizes="72x72">
495aecfe 32
9ff628ca
KD
33 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-57.png') }}" sizes="57x57">
34 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon-57.png') }}" sizes="57x57">
495aecfe 35
9ff628ca
KD
36 <link rel="apple-touch-icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon.png') }}">
37 <link rel="icon" type="image/png" href="{{ asset('wallassets/themes/_global/img/appicon/apple-touch-icon.png') }}">
495aecfe 38
9ff628ca 39 <link rel="shortcut icon" type="image/x-icon" href="{{ asset('wallassets/themes/_global/img/appicon/favicon.ico') }}">
495aecfe 40
10f31ac5 41 <link rel="manifest" href="{{ asset('manifest.json') }}">
35ce4d5e 42
f38e03dc
TC
43 {% block css %}
44 {% endblock %}
495aecfe 45 {% block scripts %}
3cc78f06
NL
46 <script src="{{ asset('bundles/fosjsrouting/js/router.js') }}"></script>
47 <script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
495aecfe
J
48 {% endblock %}
49
152fcccd 50 <title>{% block title %}{% endblock %} – wallabag</title>
495aecfe
J
51 {% endblock %}
52 </head>
53
54 <body class="{% block body_class %}{% endblock %}">
19c28314 55 {% block header %}{% endblock %}
495aecfe
J
56
57 <div id="main">
19c28314 58 {% block menu %}{% endblock %}
495aecfe 59
a6523cfe
AD
60 <main>
61 {% block precontent %}{% endblock %}
62
19c28314 63 {% block messages %}{% endblock %}
495aecfe 64
ec3ce598 65 <div id="content">
a6523cfe
AD
66 {% block content %}{% endblock %}
67 </div>
68 </main>
495aecfe
J
69 </div>
70
19c28314
JB
71 {% block footer %}{% endblock %}
72
077ddbe1
JB
73 {% if craue_setting('piwik_enabled') %}
74 {{ piwik(craue_setting('piwik_host'), craue_setting('piwik_site_id')) }}
75 {% endif %}
495aecfe
J
76 </body>
77</html>