templates/frontend/home/home.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}
  3.     {{'home.home'|trans([],'home_page') }}
  4. {% endblock %}
  5. {% block stylesheet %}
  6.     {{ parent() }}
  7.     <link rel="stylesheet" href="{{ asset('assets/css/home-page.css') }}">
  8.     <link rel="stylesheet" href="{{ asset('assets/css/publicity.css') }}">
  9.     <link rel="stylesheet" href="{{ asset('assets/css/ads_pub.css') }}">
  10.     <style>
  11.         .hero_in.general:before {
  12.             background-color: #11a6ba;
  13.         }
  14.         .banner {
  15.             background: url({{ asset('build/images/blueCamtel.5f820037.jpg') }}) center center no-repeat;
  16.             -webkit-background-size: cover;
  17.             -moz-background-size: cover;
  18.             -o-background-size: cover;
  19.             background-size: cover;
  20.             width: 100%;
  21.             height: 420px;
  22.             margin-bottom: 60px;
  23.             position: relative;
  24.         }
  25.         @media (max-width: 767px) {
  26.             .banner {
  27.                 background: url({{ asset('build/images/blue-spot.5a6b5042.png') }}) center center no-repeat;
  28.                 -webkit-background-size: cover;
  29.                 -moz-background-size: cover;
  30.                 -o-background-size: cover;
  31.                 background-size: cover;
  32.                 width: 100%;
  33.                 height: 420px;
  34.                 margin-bottom: 60px;
  35.                 position: relative;
  36.             }
  37.         }
  38.     </style>
  39.     <link href="{{ asset('assets/css/hero-in.css') }}" rel="stylesheet">
  40. {% endblock %}
  41. {% block body %}
  42.     {% include '_partials/home/hero-section.html.twig' %}
  43.     <!-- /hero_single -->
  44.     {% include '_partials/home/publicity-section.html.twig' with {'publicities': publicity} %}
  45. {#    {% include '_partials/home/publicity-css.html.twig' with {#}
  46. {#        'publicity': publicity#}
  47. {#    } %}#}
  48.     <!-- /publicity section -->
  49.     {% include '_partials/home/services-section.html.twig' with {
  50.         'categories': categories
  51.     } %}
  52.     <!-- /about section -->
  53.     {% include '_partials/home/hotels-section.html.twig' with {
  54.         'categories': categories
  55.     } %}
  56. {#    <!-- /container -->#}
  57. {% endblock %}
  58. {% block javascript %}
  59. {{ parent() }}
  60. <script src="{{ asset('assets/js/ads_pub.js') }}"></script>
  61. <script src="{{ asset('assets/js/publicity.js') }}"></script>
  62. <script src="{{ asset('assets/js/home-page.js') }}"></script>
  63. {% endblock %}