templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>    
  2. <html>
  3.     <head>
  4.         <script src="{{asset ('js/jquery-2.1.4.min.js')}}"></script>
  5.         <script src="{{asset ('jquery-ui-1.11.4/jquery-ui.min.js')}}"></script>
  6.         <script src="{{asset ('bootstrap-4.3.1-dist/js/bootstrap.min.js')}}"></script>
  7.         <link rel="stylesheet" href="{{asset ('jquery-ui-1.11.4/jquery-ui.min.css')}}">
  8.         <link rel="stylesheet" href="{{asset ('bootstrap-4.3.1-dist/css/bootstrap.css')}}">
  9.         <link rel="stylesheet" href="{{asset ('bootstrap-4.3.1-dist/css/open-iconic-bootstrap.css')}}">
  10.         <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" >
  11.         {% block head %}{% endblock %}
  12.         {% block style %}{% endblock %}  
  13.         {% block stylemMenuBar %}
  14.             <style>
  15.                 .logo
  16.                 {
  17.                     float: left;
  18.                     margin-right: 20px;
  19.                 }
  20.                 .menu
  21.                 {
  22.                     list-style-type: none;
  23.                     margin: 0;
  24.                     padding: 0;
  25.                     height: 44px
  26.                 }
  27.                 .menu li a 
  28.                 {
  29.                     display: inline-block;
  30.                     padding: 18px;
  31.                     padding-bottom: 11px;
  32.                     padding-top: 12px;
  33.                     float: left;
  34.                     text-decoration: none;
  35.                     text-transform: uppercase;
  36.                     font-family: Calibri;
  37.                     font-weight: Bold;
  38.                     font-size: 17px;
  39.                     color: #ffffff;
  40.                     border-bottom:none;
  41.                     transition: background-color 0.5s cubic-bezier(0.29, 0.33, 0.51, 1.16), color 0.5s cubic-bezier(0.29, 0.33, 0.51, 1.16);
  42.                     transition-property: background-color, color;
  43.                     transition-duration: 0.5s, 0.5s;
  44.                     transition-timing-function: cubic-bezier(0.29, 0.33, 0.51, 1.16), cubic-bezier(0.29, 0.33, 0.51, 1.16);
  45.                     transition-delay: initial, initial;
  46.                 }
  47.                 
  48.                 .menu li a:hover
  49.                 {
  50.                     border-bottom:none;
  51.                     background-color: #000000;
  52.                     color:#ffffff !important;
  53.                 }
  54.                 .divImg
  55.                 {
  56.                     padding-top: 16px;
  57.                     padding-left: 16px;                    
  58.                     padding-right: 16px;
  59.                     padding-bottom: 1px;
  60.                 }
  61.                 .divNav
  62.                 {
  63.                     overflow: hidden;
  64.                     background-color: #5f5f5f;
  65.                     position:relative;                    
  66.                     height: 44px;
  67.                     top: 0px;
  68.                     margin-top: 27px;
  69.                     padding-top: 0px;
  70.                     border-top-left-radius: 300px;
  71.                     border-bottom-left-radius: 300px;
  72.                     border-bottom-right-radius: 1000px;
  73.                 }
  74.                 .divNav a.active 
  75.                 {
  76.                     background-color:#A70531;
  77.                     color:#ffffff;    
  78.                 }
  79.                 .navMenu
  80.                 {
  81.                     height: 44px;     
  82.                 }
  83.                 .divTop
  84.                 {
  85.                     margin-bottom: 10px;
  86.                 }
  87.                 .div2 {
  88.                     background-repeat: no-repeat;
  89.                     background-position: center;
  90.                     border-radius: 7px;
  91.                     border-color: white;
  92.                     border: 1px solid rgba(0, 0, 0, .0);
  93.                     background-clip: padding-box;
  94.                     height: 35px;
  95.                     width: 35px;
  96.                 }
  97.             </style>
  98.         {% endblock %}
  99.         
  100.        {% block script %}{% endblock %}
  101.         </head>
  102.         <body>
  103.         {% block menuBar %}
  104.             <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
  105.                 <a class="navbar-brand" href="#"> <img src="/img/logo.png" width="140" alt="Visiotech Logo" class="logo"></a>
  106.                 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
  107.                     <span class="navbar-toggler-icon"></span>
  108.                 </button>
  109.                 <div class="collapse navbar-collapse" id="navbarNavAltMarkup">
  110.                     <div class="navbar-nav">
  111.                         <a class="nav-item nav-link active" id="translationsTable" href="{{path('showTranslationsGrid')}}">Traducciones</a>
  112.                         <a class="nav-item nav-link" id="translate" href="{{path('showTranslate')}}">Traducir</a>
  113.                     </div>
  114.                 </div>
  115.             </nav>
  116.         {% endblock %}
  117.         {% block body %}{% endblock %}
  118.         </body>
  119. </html>
  120.