templates/Admin/layout-general.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <!--[if lt IE 7]>
  3. <html class="lt-ie9 lt-ie8 lt-ie7" lang="fr">
  4. <![endif]-->
  5. <!--[if IE 7]>
  6. <html class="lt-ie9 lt-ie8" lang="fr">
  7. <![endif]-->
  8. <!--[if IE 8]>
  9. <html class="lt-ie9" lang="fr">
  10. <![endif]-->
  11. <!--[if gt IE 8]>
  12. <!-->
  13. <html lang="fr">
  14.   <!--
  15. <![endif]-->
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  18. <title>MyLibrairie.ma - Espace administration</title>
  19. <meta name="viewport" content="width=device-width, initial-scale=1" />
  20. <meta name="robots" CONTENT="noindex,nofollow" />
  21. <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,700" rel="stylesheet">
  22. <link rel="stylesheet" href="{{ translate.params.urlcdn }}css/admin/style.css" />
  23. <link rel="shortcut icon" href="/favicon.ico" />
  24. <style>
  25. input[type="text"], input[type="password"], select, textarea{display:block;width:90%;margin:10px auto;height:50px;box-sizing:border-box;padding:10px}
  26. .popin-btn{display:block;color:white;background-color:#3F0EA1;cursor:pointer;width:90%;box-sizing:border-box;line-height:50px;font-size:15px;padding:0px;border-radius:3px;text-decoration:none;text-align:center;margin:10px auto;}
  27. .popin-btn:hover{background:black}
  28. </style>
  29. </head>
  30. <body>
  31. <header>
  32.     <a href="{{ path('admin_homepage') }}" id="logo"></a>
  33. </header>
  34. <div style="padding-top:100px">
  35. {% block body %}{% endblock %}
  36. </div>
  37. <script src="{{ translate.params.urlcdn }}js/jquery-3.2.0.min.js"></script>
  38. {% block footer %}{% endblock %}
  39. </body>
  40. </html>