app/template/kaorime/error.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. {#
  3. This file is part of EC-CUBE
  4. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  5. http://www.ec-cube.co.jp/
  6. For the full copyright and license information, please view the LICENSE
  7. file that was distributed with this source code.
  8. #}
  9. <html lang="{{ eccube_config.locale }}">
  10. <head>
  11.     <meta charset="utf-8">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  13.     <title>{{ error_title }}</title>
  14.     <link rel="icon" href="{{ asset('assets/img/common/favicon.ico', 'user_data') }}">
  15.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  16. </head>
  17. <body>
  18. <div class="ec-layoutRole">
  19.     <div class="ec-404Role">
  20.         <div class="ec-off4Grid">
  21.             <div class="ec-off4Grid__cell">
  22.                 <div style="font-size:100px;text-align:center;">
  23.                     <div class="ec-404Role__icon ec-icon">
  24.                         <img src="{{ asset('assets/icon/exclamation-pale.svg') }}" alt="">
  25.                     </div>
  26.                 </div>
  27.                 <p class="ec-404Role__title ec-reportHeading">{{ error_title }}</p>
  28.                 <p class="ec-404Role__description ec-reportDescription">{{ error_message }}</p>
  29.                 <a class="ec-blockBtn--cancel" href="{{ app.request.basePath ~ '/' }}">{{ 'トップページへ'|trans }}</a>
  30.             </div>
  31.         </div>
  32.     </div>
  33. </div>
  34. </body>
  35. </html>