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