aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/dark/layout.html.twig
blob: e17c139267c1ad5305795a0de979f4b886478901 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<!--[if lte IE 6]><html class="no-js ie6 ie67 ie678" lang="en"><![endif]-->
<!--[if lte IE 7]><html class="no-js ie7 ie67 ie678" lang="en"><![endif]-->
<!--[if IE 8]><html class="no-js ie8 ie678" lang="en"><![endif]-->
<!--[if gt IE 8]><html class="no-js" lang="en"><![endif]-->
<html lang="en">
    <head>
        <meta name="viewport" content="initial-scale=1.0">
        <meta charset="utf-8">
        <!--[if IE]>
        <meta http-equiv="X-UA-Compatible" content="IE=10">
        <![endif]-->
        <title>{% block title %}{% endblock %} - wallabag</title>
        {% include "WallabagCoreBundle:themes:_global/_head_icon.html.twig" %}

        <link rel="stylesheet" href="{{ asset('themes/_global/css/knacss.css') }}" media="all">
        <link rel="stylesheet" href="{{ asset('themes/_global/css/style.css') }}" media="all">
        <link rel="stylesheet" href="{{ asset('themes/dark/css/style-dark.css') }}" media="all">

        <script src="{{ asset('themes/_global/js/jquery-2.0.3.min.js') }}"></script>
        <script src="{{ asset('themes/_global/js/autoClose.js') }}"></script>
        <script src="{{ asset('themes/_global/js/saveLink.js') }}"></script>
        <script src="{{ asset('themes/_global/js/popupForm.js') }}"></script>
        <script src="{{ asset('bundles/wallabagcore/js/bookmarklet.js') }}"></script>
    </head>
    <body>
    {% include "WallabagCoreBundle::_top.html.twig" %}
    <div id="main">
        {% block menu %}{% endblock %}
        {% block precontent %}{% endblock %}
        {{ include("WallabagCoreBundle::_messages.html.twig", {'flashMessages': app.session.flashbag.get('notice')}) }}
        <div id="content" class="w600p center">
            {% block content %}{% endblock %}
        </div>
    </div>
    {% include "WallabagCoreBundle::_footer.html.twig" %}
    </body>
</html>