templates/fos/base.html.twig line 110

Open in your IDE?
  1. <head>
  2.     <meta charset="UTF-8"/>
  3.     <title>
  4.         {% block title %}
  5.             Welcome: NENO COURIER
  6.         {% endblock %}
  7.     </title>
  8.     {#    <link rel="icon" type="image/x-icon" href="{{ asset('fos/images/logo.png') }}"/>#}
  9.     <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  10.     <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.7.0-RC2/css/bootstrap-datepicker.min.css">
  11.     <script src="{{ asset('fos/plugins/jquery/jquery-2.2.4.min.js') }}"></script>
  12.     {#    <script src="{{ asset('scripts/jquery.fileDownload.js') }}"></script>#}
  13.     <script src="{{ asset('fos/plugins/cosmo/js/bootstrap.min.js') }}"></script>
  14.     {#<script src="{{ asset('css/js/app.js') }}"></script>#}
  15.     {#<script src="{{ asset('css/js/bootstrap-confirmation.min.js') }}"></script>#}
  16.     {#<script src="{{ asset('admin_web/css/js/modernizr.custom.js') }}"></script>#}
  17.     <link href='http://fonts.googleapis.com/css?family=Nova+Flat' rel='stylesheet' type='text/css' />
  18.     <link rel="stylesheet" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/bootstrap/easyui.css') }}">
  19.     <link rel="stylesheet" type="text/css" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/icon.css') }}">
  20.     <link rel="stylesheet" type="text/css" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/color.css') }}">
  21.     <link rel="stylesheet" href="{{ asset('assets/plugins/fontawesome-free-5.3.1-web/css/all.min.css') }}">
  22.     <link href="{{ asset('fos/plugins/fonts/Amaranth/amaranth.css') }}" rel="stylesheet" type="text/css">
  23.     <link rel="stylesheet" href="{{ asset('fos/plugins/cosmo/css/bootstrap.min.css') }}">
  24.     <link rel="stylesheet" href="{{ asset('fos/css/home.css') }}">
  25.     <link rel="stylesheet" href="{{ asset('fos/css/login.css') }}">
  26.     <link href="https://fonts.googleapis.com/css?family=Big+Shoulders+Text|Merriweather|Nova+Flat|Open+Sans|Open+Sans+Condensed:300&display=swap" rel="stylesheet">
  27.     <style>
  28.         .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  29.             color: black;
  30.         }
  31.         body {
  32.             font-family: 'Amaranth', Sans-serif, FontAwesome;
  33.         }
  34.     </style>
  35.     {% block alert %}
  36.         <script>
  37.             $(window).on('load', function () {
  38.                 $(".se-pre-con").fadeOut("slow");
  39.             });
  40.         </script>
  41.     {% endblock %}
  42.     {% block stylesheets %}
  43.         {{ encore_entry_link_tags('app') }}
  44.     {% endblock %}
  45. </head>
  46. <body>
  47. <div class="se-pre-con"></div>
  48. {% block firstnav %}
  49. {% endblock %}
  50. {% block secondnav %}
  51. {% endblock %}
  52. <div class="main">
  53.     {% block responseflash %}
  54.         {% for flash_message in app.session.flashBag.get('success') %}
  55.             <div class="alert alert-success alert-dismissable fade in pro">
  56.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  57.                 <strong>Success:</strong> {{ flash_message }}
  58.             </div>
  59.         {% endfor %}
  60.         {% for flash_message in app.session.flashBag.get('warning') %}
  61.             <div class="alert alert-warning alert-dismissable fade in pro">
  62.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  63.                 <strong>Warning: </strong> {{ flash_message }}
  64.             </div>
  65.         {% endfor %}
  66.         {% for flash_message in app.session.flashBag.get('error') %}
  67.             <div class="alert alert-danger alert-dismissable fade in pro">
  68.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  69.                 <strong>Error:</strong> {{ flash_message }}
  70.             </div>
  71.         {% endfor %}
  72.     {% endblock %}
  73.     {% block main %}
  74.     {% endblock %}
  75. </div>
  76. <script>
  77.     /* window.setTimeout(function () {
  78.          $(".resp").fadeTo(500, 0).slideUp(500, function () {
  79.              $(this).remove();
  80.          });
  81.      }, 4000);*/
  82. </script>
  83. <script type="text/javascript" src="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/jquery.min.js') }}"></script>
  84. <script type="text/javascript" src="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/jquery.easyui.min.js') }}"></script>
  85. <script type="text/javascript" src="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/datagrid-filter.js') }}"></script>
  86. <script type="text/javascript" src="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/datagrid-groupview.js') }}"></script>
  87. <script type="application/javascript" src="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/datagrid-detailview.js') }}"></script>
  88. <script src="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/plugins/jquery.maskedbox.js') }}"></script>
  89. <script src="https://unpkg.com/@popperjs/core@2"></script>
  90. <script>
  91.     window.setTimeout(function() {
  92.         $(".resp").fadeTo(500, 0).slideUp(500, function(){
  93.             $(this).remove();
  94.         });
  95.     }, 5000);
  96. </script>
  97. {% block javascript %}
  98. {{ encore_entry_script_tags('app') }}
  99. {% endblock %}
  100. </body>
  101. </html>