app/template/osechi/Helicopter/index.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% set body_class = 'service_page' %}
  3. {% block javascript %}
  4.     <script src="{{ asset('assets/js/hotelinfo].js') }}?{{ env('JS_PARAM') }}"></script>
  5.     <script src="{{ asset('assets/js/helicopter.js') }}"?{{ env('JS_PARAM') }}></script>
  6. {% endblock %}
  7. {% block stylesheet %}
  8.     <link href="https://fonts.googleapis.com/css2?family=Allura&display=swap" rel="stylesheet">
  9.     <link rel="stylesheet" href="{{ asset('assets/css/helicopter.css') }}?{{ env('CSS_PARAM') }}">
  10. {% endblock %}
  11. {% block main %}
  12.     <div class="t-container">
  13.         <h1>
  14.           <picture>
  15.               <source srcset="/awd/html/template/osechi/assets/img/helicopter/main_visual_sp.webp" media="(max-width: 768px)">
  16.               <img src="/awd/html/template/osechi/assets/img/helicopter/main_visual.webp" alt="Supercar rental in Tokyo {{app.request.query.get('hotel')}}">
  17.           </picture>
  18.         </h1>
  19.         <p class="title">Helicopter Private Charter</p>
  20. {#
  21.         <p class="title">- Exclusive Mobility Service<br class="spOnly"> for Your Finest Moments -</p>
  22. #}
  23.         <p class="japanise main-subtitle">for Your Finest Moments</p>
  24.     </div>
  25.     <div class="ec-categoryHeadRole__content">
  26.         <h1 class="title"></h1>
  27.         <p>
  28. We offer a variety of helicopter services, including Tokyo Area, Fuji Area Helicopter Cruises, transportation from Narita Airport to Tokyo, the Fuji area, and Amanemu. For hotel-to-airport transfers, we provide luxury car services. Please enjoy your journey through the skies of Japan!
  29.         </p>
  30.     </div>
  31.     <div class="container service">
  32.         <div class="item">
  33.             <a href="{{ url('helicopter_detail', {'id': '42'}) }}">
  34.                 <img src="{{ asset('assets/img/helicopter/service01.webp')}}" alt="">
  35.                 <p class="title"><span>Tokyo Helicopter Cruise</span></p>
  36. {#
  37.                 <p class="note">You can rent the car for a minimum of three hours. We also offer complimentary hotel delivery. Please note that an international driver's license is required, and prior experience with luxury cars may be necessary.</p>
  38. #}
  39.                 <div class="btn">read more</div>
  40.             </a>
  41.           </div>
  42.         <div class="item">
  43.             <a href="{{ url('helicopter_detail', {'id': '43'}) }}">
  44.                 <img src="{{ asset('assets/img/helicopter/service02.webp')}}" alt="">
  45.                 <p class="title"><span>Tokyo-Fuji Sky Cruise</span></p>
  46. {#
  47.                 <p class="note">This is a recommended co-pilot experience plan for customers without an international driver's license. It's a plan where you can take photos at Tokyo's popular tourist attractions alongside your favorite car.</p>
  48. #}
  49.                 <div class="btn">read more</div>
  50.             </a>
  51.           </div>
  52.         <div class="item">
  53.             <a href="{{ url('helicopter_detail', {'id': '44'}) }}">
  54.                 <img src="{{ asset('assets/img/helicopter/service03.webp')}}" alt="">
  55.                 <p class="title"><span>Narita-Tokyo Transport</span></p>
  56. {#
  57.                 <p class="note">E-BIKE rentals are available for a minimum of 3 hours. Free delivery service to your hotel is also available.</p>
  58. #}
  59.                 <div class="btn">read more</div>
  60.             </a>
  61.           </div>
  62.         <div class="item">
  63.             <a href="{{ url('helicopter_detail', {'id': '45'}) }}">
  64.                 <img src="{{ asset('assets/img/helicopter/service04.webp')}}" alt="">
  65.                 <p class="title"><span>Tourist Destination Transportation</span></p>
  66. {#
  67.                 <p class="note">You can charter the boat for a minimum of two hours. Complimentary hotel pickup and drop-off services are included. Additionally, you have the option to combine this service with helicopter rides or rental of your preferred cars.</p>
  68. #}
  69.                 <div class="btn">read more</div>
  70.             </a>
  71.           </div>
  72.     </div>
  73. {% endblock %}