templates/admin/base_disconnected.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>{% block title %}Admin{% endblock %}</title>
  7.         <meta name="description" content="{% block meta_desc %}{% endblock %}" />
  8.         <meta name="keywords" content="{% block meta_keywords %}{% endblock %}" />
  9.         <meta name="robots" content="noindex, nofollow">
  10.         <link rel="stylesheet" type="text/css" href="{{ asset('build/app_admin.css') }}" />
  11.         <style>
  12.             h2{
  13.                 color:  #034189;
  14.             }
  15.             .btn-primary{
  16.                 background-color: #034189;
  17.             }
  18.         </style>
  19.         {% block stylesheets %}{% endblock %}
  20.         
  21.     </head>
  22.     <body>
  23.         {% block content %}{% endblock %}
  24.         {{ encore_entry_script_tags('app_admin') }}
  25.     </body>
  26. </html>