templates/immemory/baseImmemory.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <meta name="description" content="Autobiographie de Chris Marker.
  8. Produit par le Centre Georges Pompidou, le Musée National d'Art Moderne, le Service nouveaux media et Les Films de l'Astrophore, à Paris, Nosferatu, à Helsinki, et le Centre pour l'image contemporaine de Saint-Gervais,
  9.  à Genève, ce projet est au départ un cédérom, qui consiste en un immense assemblage de fragments (images, textes et son), que l'utilisateur peut parcourir à sa guise, recréant autant d'histoires (ou biographies) que de parcours." />
  10.         <meta name="keywords" content="Chris Marker" />
  11.         <meta name="author" content="Justarigolo & Webgiciel" />
  12.         <meta name="copyright" content="© CC 2021" />
  13.         <!-- favicon -->
  14.         <link rel="shortcut icon" href="{{ pathLocal }}/modules/favicon.ico">
  15.         <!-- titre -->
  16.         <title>{% block title %}Immemory{% endblock %}</title>
  17.         <!-- jquery -->
  18.         <script src="{{ pathLocal }}/modules/js/jquery-3.6.1.min.js"></script>
  19.         <!-- bootstrap -->
  20.         <link rel="stylesheet" href="{{ pathLocal }}/modules/bootstrap-5.2.2/css/bootstrap.min.css">
  21.         <script src="{{ pathLocal }}/modules/bootstrap-5.2.2/js/bootstrap.bundle.min.js"></script>
  22.         <!-- fontawesome -->
  23.         <script src="https://kit.fontawesome.com/97264cb235.js" crossorigin="anonymous"></script>
  24.         <!-- ckeditor -->
  25.         <script src="https://cdn.ckeditor.com/4.16.1/standard/ckeditor.js"></script>
  26.         <!-- jquery-ui -->
  27.         <link rel="stylesheet" href="{{ pathLocal }}/modules/js/jquery-ui-1.12.1.custom/jquery-ui.min.css">
  28.         <!-- css -->
  29.         <link rel="stylesheet" href="{{ pathLocal }}/css/style.css">
  30.         {% if app.user is not null %}
  31.           {% if app.user.roles[0] == "ROLE_ADMIN" %}
  32.             <link rel="stylesheet" href="{{ pathLocal }}/css/style_Administrateur.css">
  33.           {% else %}
  34.             <link rel="stylesheet" href="{{ pathLocal }}/css/style_Membre.css">
  35.           {% endif %}
  36.         {% else %}
  37.             <link rel="stylesheet" href="{{ pathLocal }}/css/style_Visiteur.css">
  38.         {% endif %}
  39.         <link rel="stylesheet" href="{{ pathLocal }}/css/stylePrint.css" type="text/css" media="print">
  40.     </head>
  41.     <body>
  42.           <div id="base" class="sticky-top">
  43.         {% include('immemory/elements/navBarImmemory.html.twig') %}
  44.           </div>
  45.       {% block body %}{% endblock %}
  46.         <!-- jquery-ui -->
  47.         <script src="{{ pathLocal }}/modules/js/jquery-ui-1.12.1.custom/external/jquery/jquery.js"></script>
  48.         <script src="{{ pathLocal }}/modules/js/jquery-ui-1.12.1.custom/jquery-ui.min.js"></script>
  49.         <!-- js -->
  50.         {% block javascripts %}{% endblock %}
  51.     </body>
  52. </html>