Translated using Weblate (Dutch)
[phpmyadmin.git] / templates / header.twig
blob63d10aad47f5acf2bdff6dc8e41d472b6b3c60f4
1 <!doctype html>
2 <html lang="{{ lang }}" dir="{{ text_dir }}">
3 <head>
4   <meta charset="utf-8">
5   <meta name="viewport" content="width=device-width, initial-scale=1">
6   <meta name="referrer" content="no-referrer">
7   <meta name="robots" content="noindex,nofollow">
8   {% if not allow_third_party_framing -%}
9     <style id="cfs-style">html{display: none;}</style>
10   {%- endif %}
12   <link rel="icon" href="favicon.ico" type="image/x-icon">
13   <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
14   {% if is_print_view %}
15     <link rel="stylesheet" type="text/css" href="{{ base_dir }}print.css?{{ version }}">
16   {% else %}
17     <link rel="stylesheet" type="text/css" href="{{ theme_path }}/jquery/jquery-ui.css">
18     <link rel="stylesheet" type="text/css" href="{{ base_dir }}js/vendor/codemirror/lib/codemirror.css?{{ version }}">
19     <link rel="stylesheet" type="text/css" href="{{ base_dir }}js/vendor/codemirror/addon/hint/show-hint.css?{{ version }}">
20     <link rel="stylesheet" type="text/css" href="{{ base_dir }}js/vendor/codemirror/addon/lint/lint.css?{{ version }}">
21     <link rel="stylesheet" type="text/css" href="{{ theme_path }}/css/theme{{ text_dir == 'rtl' ? '.rtl' }}.css?{{ version }}">
22     <link rel="stylesheet" type="text/css" href="{{ theme_path }}/css/printview.css?{{ version }}" media="print" id="printcss">
23   {% endif %}
24   <title>{{ title }}</title>
25   {{ scripts|raw }}
26   <noscript><style>html{display:block}</style></noscript>
27 </head>
28 <body{{ body_id is not empty ? ' id=' ~ body_id }}>
29   {{ navigation|raw }}
30   {{ custom_header|raw }}
31   {{ load_user_preferences|raw }}
33   {% if not show_hint %}
34     <span id="no_hint" class="hide"></span>
35   {% endif %}
37   {% if is_warnings_enabled %}
38     <noscript>
39       {{ 'Javascript must be enabled past this point!'|trans|error }}
40     </noscript>
41   {% endif %}
43   {% if is_menu_enabled and server > 0 %}
44     {{ menu|raw }}
45     <span id="page_nav_icons">
46       <span id="lock_page_icon"></span>
47       <span id="page_settings_icon">
48         {{ get_image('s_cog', 'Page-related settings'|trans) }}
49       </span>
50       <a id="goto_pagetop" href="#">{{ get_image('s_top', 'Click on the bar to scroll to top of page'|trans) }}</a>
51     </span>
52   {% endif %}
54   {{ console|raw }}
56   <div id="page_content">
57     {{ messages|raw }}
59     {{ recent_table|raw }}
60     {{ include('modals/preview_sql_modal.twig') }}