templates/content/baseImmemory.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <meta name="description" content="Autobiographie de Chris Marker.
  7. 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,
  8.  à 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." />
  9.         <meta name="keywords" content="Chris Marker" />
  10.         <meta name="author" content="Justarigolo & Webgiciel" />
  11.         <meta name="copyright" content="© CC 2021" />
  12.         <!-- favicon -->
  13.         <link rel="shortcut icon" href="{{ pathLocal }}/modules/favicon.ico">
  14.         <!-- titre -->
  15.         <title>{% block title %}Immemory{% endblock %}</title>
  16.         <!-- bootstrap -->
  17.         <link rel="stylesheet" href="{{ pathLocal }}/modules/bootstrap-4.5.3/css/bootstrap.min.css">
  18.         <!-- fontawesome -->
  19.         <script src="https://kit.fontawesome.com/97264cb235.js" crossorigin="anonymous"></script>
  20.         <!-- ckeditor -->
  21.         <script src="https://cdn.ckeditor.com/4.16.1/standard/ckeditor.js"></script>
  22.         <!-- jquery-ui -->
  23.         <link rel="stylesheet" href="{{ pathLocal }}/modules/js/jquery-ui-1.12.1.custom/jquery-ui.min.css">
  24.         <!-- css -->
  25.         
  26.         <link rel="stylesheet" href="{{ pathLocal }}/css/style.css">
  27.         
  28.         {% if app.user is not null %}
  29.           {% if app.user.roles[0] == "ROLE_ADMIN" %}
  30.             <link rel="stylesheet" href="{{ pathLocal }}/css/style_Administrateur.css">
  31.           {% else %}
  32.             <link rel="stylesheet" href="{{ pathLocal }}/css/style_Membre.css">
  33.           {% endif %}
  34.         {% else %}
  35.             <link rel="stylesheet" href="{{ pathLocal }}/css/style_Visiteur.css">
  36.         {% endif %}
  37.         <link rel="stylesheet" href="{{ pathLocal }}/css/stylePrint.css" type="text/css" media="print">
  38.     </head>
  39.     <body>
  40.           <div id="base" class="sticky-top">
  41.         {% include('content/elements/navBarImmemory.html.twig') %}
  42.           </div>
  43.       {% block body %}{% endblock %}
  44.         <!-- bootstrap -->
  45.         <script src="{{ pathLocal }}/modules/js/jquery-3.5.1.min.js"></script>
  46.         <script src="{{ pathLocal }}/modules/bootstrap-4.5.3/js/bootstrap.bundle.min.js"></script>
  47.         <!-- jquery-ui -->
  48.         <script src="{{ pathLocal }}/modules/js/jquery-ui-1.12.1.custom/external/jquery/jquery.js"></script>
  49.         <script src="{{ pathLocal }}/modules/js/jquery-ui-1.12.1.custom/jquery-ui.min.js"></script>
  50.         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
  51.         <!-- js -->
  52.         {% block javascripts %}{% endblock %}
  53.     </body>
  54. </html>