templates/base.html.twig line 1

Open in your IDE?
  1. 
  2. <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
  3. <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
  4. <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
  5. <!--[if (gte IE 9)|!(IE)]><!-->
  6. <html lang="en">
  7. <!--<![endif]-->
  8. <head>
  9.     <meta charset="utf-8" />
  10.     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
  11.     <meta name="description" content="" />
  12.     <meta name="author" content="" />
  13.     <!--[if IE]>
  14.     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  15.     <![endif]-->
  16.     <title>Support Admin</title>
  17.     {% block styles %}
  18.         {{ encore_entry_link_tags('app') }}
  19.     {% endblock %}
  20.     <link href="https://fonts.googleapis.com/css?family=Oswald|Slabo+27px" rel="stylesheet">
  21.     <link href="{{ asset('fos/plugins/fonts/Amaranth/amaranth.css') }}" rel="stylesheet" type="text/css">
  22.     <!-- BOOTSTRAP CORE STYLE CSS -->
  23.     <link href="{{ asset('assets/plugins/bootstrap-4.1.1/css/bootstrap.css') }}" rel="stylesheet" />
  24.     <link rel="stylesheet" href="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/themes/default/easyui.css') }}">
  25.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/themes/icon.css') }}">
  26.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/themes/color.css') }}">
  27.     <!-- FONT AWESOME CSS -->
  28.     <link href="{{ asset('assets/plugins/fontawesome-free-5.3.1-web/css/all.min.css') }}" rel="stylesheet" />
  29.     <!-- CUSTOM STYLE CSS -->
  30.     <link href="{{ asset('assets/css/style.css') }}" rel="stylesheet" />
  31.     <!-- Google    Fonts -->
  32.     <link href="https://fonts.googleapis.com/css?family=Big+Shoulders+Text|Merriweather|Nova+Flat|Open+Sans|Open+Sans+Condensed:300&display=swap" rel="stylesheet">
  33.     {#<link href='http://fonts.googleapis.com/css?family=Nova+Flat' rel='stylesheet' type='text/css' />#}
  34.     {#<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300' rel='stylesheet' type='text/css' />#}
  35.     <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  36.     <!--[if lt IE 9]>
  37.     <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  38.     <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
  39.     <![endif]-->
  40.     {% block stylesheets %}
  41.         <style>
  42.             .navbar .navbar-brand {
  43.                 font-weight: bold;
  44.                 height: 60px;
  45.             }
  46.             .navbar .navbar-brand {
  47.                 color: white;
  48.             }
  49.             .navbar .navbar-brand:hover {
  50.                 color: white;
  51.             }
  52.             .navbar-brand i {
  53.                 color: orange;
  54.                 font-family: 'Nova Flat', sans-serif;
  55.                 font-style: normal;
  56.                 font-size: 32px;
  57.             }
  58.             .se-pre-con {
  59.                 position: fixed;
  60.                 left: 0px;
  61.                 top: 0px;
  62.                 width: 100%;
  63.                 height: 100%;
  64.                 z-index: 9999;
  65.                 background: url('fos/images/loading.gif') center no-repeat rgba(19, 19, 19, 0.38);
  66.             }
  67.         </style>
  68.     {% endblock %}
  69. </head>
  70. <body>
  71. <div class="se-pre-con"></div>
  72. {% block head %}
  73. <div class="" id="head">
  74.     <div class="container">
  75.             <nav class="navbar navbar-expand-lg navbar-light">
  76.                 <a class="navbar-brand" href="/">
  77.                     NENO <i style="">COURIER</i>
  78.                 </a>
  79.                 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
  80.                     <span class="navbar-toggler-icon"></span>
  81.                 </button>
  82.                 <div class="collapse navbar-collapse" id="navbarSupportedContent">
  83.                     <ul class="navbar-nav mr-auto nav-pills">
  84.                         {% block homelink %}
  85.                             <li class="nav-item">
  86.                                 <a class="nav-link" href="{{ path('homepage') }}">Home <span class="sr-only">(current)</span></a>
  87.                             </li>
  88.                         {% endblock %}
  89.                         {% block parcelsLink %}
  90.                             <li class="nav-item dropdown">
  91.                                 <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  92.                                     Parcels
  93.                                 </a>
  94.                                 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
  95.                                     <a class="dropdown-item" href="{{ path('bos_all_parcels') }}"><i class="fas fa-plus-circle"></i> All Parcels</a>
  96.                                     <div class="dropdown-divider"></div>
  97.                                     <a class="dropdown-item" href="{{ path('bos_all_transactions') }}"> <i class="fas fa-money-bill"></i> Transactions</a>
  98.                                     <a class="dropdown-item" href="{{ path('daily_accounts') }}"><i class="fas fa-calendar"></i> Daily Accounts</a>
  99.                                     {#<a class="dropdown-item" href="{{ path('vehicle_deliveries') }}"><i class="fas fa-car"></i> Vehicle Deliveries</a>#}
  100.                                 </div>
  101.                             </li>
  102.                         {% endblock %}
  103.                         {% block commissionssLink %}
  104.                             <li class="nav-item">
  105.                                 <a class="nav-link" href="{{ path('vehicle_deliveries') }}">
  106.                                     Vehicle Deliveries
  107.                                 </a>
  108.                             </li>
  109.                         {% endblock %}
  110.                         {% block usersLink %}
  111.                             <li class="nav-item dropdown">
  112.                                 <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  113.                                     Stations
  114.                                 </a>
  115.                                 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
  116.                                     <a class="dropdown-item" href="{{ path('stations_') }}"><i class="fas fa-location-arrow"></i> Stations</a>
  117.                                     <a class="dropdown-item" href="{{ path('stations_add') }}"><i class="fas fa-plus-circle"></i> Add Location</a>
  118.                                     <div class="dropdown-divider"></div>
  119.                                     <a class="dropdown-item" href="{{ path('users_') }}"><i class="fas fa-user-plus"></i> Users</a>
  120.                                 </div>
  121.                             </li>
  122.                         {% endblock %}
  123.                         {% block others %}
  124.                             <li class="nav-item dropdown">
  125.                                 <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  126.                                     Others
  127.                                 </a>
  128.                                 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
  129.                                     <a class="dropdown-item" href="{{ path('owners_page') }}"><i class="fas fa-users"></i> Members</a>
  130.                                     <a class="dropdown-item" href="{{ path('all_vehicles') }}"><i class="fas fa-shuttle-van"></i> Vehicles</a>
  131.                                     <div class="dropdown-divider"></div>
  132.                                     <a class="dropdown-item" href="#"><i class="fas fa-user-plus"></i> ??</a>
  133.                                 </div>
  134.                             </li>
  135.                         {% endblock %}
  136.                         {% block services %}
  137.                             <li class="nav-item">
  138.                                 <a class="nav-link" href="{{ path('sms_services') }}">
  139.                                     Maintenance & Services
  140.                                 </a>
  141.                             </li>
  142.                         {% endblock %}
  143.                        {# {% block ownerslink %}
  144.                             <li class="nav-item">
  145.                                 <a class="nav-link" href="{{ path('owners_page') }}">Members</a>
  146.                             </li>
  147.                         {% endblock %}
  148.                         {% block vehicleslink %}
  149.                             <li class="nav-item">
  150.                                 <a class="nav-link" href="{{ path('all_vehicles') }}">Vehicles</a>
  151.                             </li>
  152.                         {% endblock %}#}
  153.                     </ul>
  154.                    {# <form class="form-inline my-2 my-lg-0">
  155.                         <input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
  156.                         <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
  157.                     </form>#}
  158.                 </div>
  159.             </nav>
  160.     </div>
  161. </div>
  162. {% endblock %}
  163. {% block main %}
  164.     {% block responseflash %}
  165.         {% for flash_message in app.session.flashBag.get('success') %}
  166.             <div class="alert alert-success alert-dismissable fade in pro">
  167.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  168.                 <strong>Success:</strong> {{ flash_message }}
  169.             </div>
  170.         {% endfor %}
  171.         {% for flash_message in app.session.flashBag.get('warning') %}
  172.             <div class="alert alert-warning alert-dismissable fade in pro">
  173.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  174.                 <strong>Warning: </strong> {{ flash_message }}
  175.             </div>
  176.         {% endfor %}
  177.         {% for flash_message in app.session.flashBag.get('error') %}
  178.             <div class="alert alert-danger alert-dismissable fade in pro">
  179.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  180.                 <strong>Error:</strong> {{ flash_message }}
  181.             </div>
  182.         {% endfor %}
  183.     {% endblock %}
  184. {% endblock %}
  185. <div id="footer" style="display: none;">
  186.     <div class="container">
  187.         <div class="row">
  188.             <div class="col-lg-4 col-md-4 col-sm-4">
  189.                 <h3>Physical Location</h3>
  190.                 <p>
  191.                     <br />
  192.                     Kenya.
  193.                     <br />
  194.                     &copy; 2014 Ohau Technologies, ltd | by <a href="http://www.ohautech.com/" style="color:#fff;" target="_blank"></a>
  195.                 </p>
  196.             </div>
  197.             <div class="col-lg-4 col-md-4 col-sm-4">
  198.                 <h3>Get Quick Help</h3>
  199.                 <h4><span>Call: </span>+0716 308 459</h4>
  200.                 <h4><span>E-mail: </span>--</h4>
  201.                 <h4><span>Skype:</span> ---</h4>
  202.             </div>
  203.             <div class="col-lg-4 col-md-4 col-sm-4">
  204.                 <h3>Subscribe For Updates</h3>
  205.             </div>
  206.         </div>
  207.     </div>
  208. </div>
  209. {% block javascripts %}
  210.             {{ encore_entry_script_tags('app') }}
  211.     <script src="https://unpkg.com/@popperjs/core@2"></script>
  212. <!--  Jquery Core Script -->
  213. <script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/jquery.min.js') }}"></script>
  214. <script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/jquery.easyui.min.js') }}"></script>
  215. <!--  Core Bootstrap Script -->
  216. <script src="{{ asset('assets/plugins/bootstrap-4.1.1/js/bootstrap.min.js') }}"></script>
  217.    <script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-filter.js') }}"></script>
  218.    <script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-groupview.js') }}"></script>
  219.    <script type="application/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-detailview.js') }}"></script>
  220.    <script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/plugins/jquery.maskedbox.js') }}"></script>
  221.    <script type="text/javascript" src="{{ asset('assets/plugins/jquery.mask.min.js') }}"></script>
  222. {% endblock %}
  223. {% block alert %}
  224.     <script>
  225.         $(window).on('load', function () {
  226.             $(".se-pre-con").fadeOut("slow");
  227.         });
  228.     </script>
  229. {% endblock %}
  230. </body>
  231. </html>