templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         <link rel="icon" href="{{ asset('uploads/logos_yipao/favicon.png') }}">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         <link href="{{ asset('web/css/font-awesome.css') }}" rel="stylesheet">
  9.         <link href="{{ asset('web/css/simple-line-icons.css') }}" rel="stylesheet">
  10.         <link href="{{ asset('web/css/fullscreen-slider.css') }}" rel="stylesheet">
  11.         <link href="{{ asset('web/css/jquery-ui.css') }}" rel="stylesheet">
  12.         <link href="{{ asset('web/css/datepicker.css') }}" rel="stylesheet">
  13.         <link href="{{ asset('web/css/bootstrap.css') }}" rel="stylesheet">
  14.         <link href="{{ asset('web/css/app.css') }}" rel="stylesheet">
  15.         {% block stylesheets %}
  16.             <style>
  17.  
  18.                 @media only screen and (max-device-width : 960px)
  19.                 { 
  20.                     #img_footer_link {
  21.                         width: 50% !important;
  22.                     }
  23.                     .text_footer_mobile {
  24.                         font-size: 30px !important;
  25.                     }
  26.                     a.span_footer_mobile > span {
  27.                         font-size: 30px !important;
  28.                     }
  29.                     .btn-icon.btn-sm {
  30.                         width: 50px !important;
  31.                     }
  32.                     .agent-avatar img {
  33.                         width: 250px !important;
  34.                         height: 250px !important;
  35.                     }
  36.                     .agent-name {
  37.                         font-size: 30px !important;
  38.                     }
  39.                     .home-content h2 {
  40.                         font-size: 45px !important;
  41.                     }
  42.                 }
  43.                 @media screen and (max-width: 480px) {
  44.                     .home-footer {
  45.                         font-size: 45px !important;
  46.                     }
  47.                     .agent-avatar img {
  48.                         width: 200px !important;
  49.                         height: 200px !important;
  50.                         border-radius: 50%;
  51.                     }
  52.                 }
  53.             </style>
  54.         {% endblock %}
  55.     </head>
  56.     <body class="notransition no-hidden">
  57.             {% block body %}{% endblock %}
  58.             <!-- Footer -->
  59.             {{ include('components/footer/footer.html.twig') }}
  60.     </body>
  61.     {% block javascripts %}
  62.         <script src="{{ asset('web/js/jquery-2.1.1.min.js') }}"></script>
  63.         <script src="{{ asset('web/js/jquery-ui.min.js') }}"></script>
  64.         <script src="{{ asset('web/js/jquery-ui-touch-punch.js') }}"></script>
  65.         <script src="{{ asset('web/js/jquery.placeholder.js') }}"></script>
  66.         <script src="{{ asset('web/js/bootstrap.js') }}"></script>
  67.         <script src="{{ asset('web/js/jquery.touchSwipe.min.js') }}"></script>
  68. {#        <script src="{{ asset('web/js/jquery.slimscroll.min.js') }}"></script>#}
  69.         <script src="http://maps.googleapis.com/maps/api/js?sensor=true&amp;libraries=geometry&amp;libraries=places" type="text/javascript"></script>
  70.         <script src="{{ asset('web/js/infobox.js') }}"></script>
  71.         {#<script src="{{ asset('web/js/jquery.tagsinput.min.js') }}"></script>#}
  72.         <script src="{{ asset('web/js/jquery.visible.js') }}"></script>
  73.         <script src="{{ asset('web/js/home.js') }}" type="text/javascript"></script>
  74.         {#<script src="{{ asset('web/js/app.js') }}" type="text/javascript"></script>#}
  75.     {% endblock %}
  76. </html>