templates/pages/company/_media.html.twig line 1

Open in your IDE?
  1. <section class="pg_company_media">
  2.   {% include "components/common/_block-title.html.twig" with {
  3.     english:'MEDIA&SOCIAL CONTRIBUTIONS',
  4.     japanese :'メディア掲載・社会貢献活動',
  5.     class:'pg_company_media_head',
  6.   }%}
  7.   <div class="pg_company_media_inner">
  8.     {% include "components/media/_media-item.html.twig" %}
  9.     <div class="pg_index_media_button">
  10.       <div class="sp-style">
  11.       {% include "components/common/_button.html.twig" with {
  12.         text: '一覧を見る',
  13.         src: 'build/images/common/arrow_white.svg',
  14.         href: path('media_index'),
  15.         width: '8',
  16.         height: '12',
  17.         class: 'c-black-border_white-button',
  18.       }%}
  19.       </div>
  20.       <div class="pc-style">
  21.       {% include "components/common/_button.html.twig" with {
  22.         text: '一覧を見る',
  23.         src: 'build/images/common/arrow_red.svg',
  24.         href: path('media_index'),
  25.         width: '8',
  26.         height: '12',
  27.         class: 'c-black-border_white-button',
  28.       }%}
  29.       </div>
  30.     </div>
  31.   </div>
  32. </section>