templates/pages/index/_news.html.twig line 1

Open in your IDE?
  1. <section class="pg_index_news">
  2.   <div class="pg_index_news_inner">
  3.     {% include "components/common/_content-title.html.twig" with {
  4.       title:'NEWS',
  5.       japan :'最新情報',
  6.       class:'c-content-title',
  7.     }%}
  8.     {% include "components/news/_news-item.html.twig" %}
  9.     <div class="sp-style">
  10.       <div class="pg_index_news_button">
  11.         {% include "components/common/_button.html.twig" with {
  12.           text: '一覧を見る',
  13.           src: 'build/images/common/arrow_white.svg',
  14.           href: path('news_index'),
  15.           width: '8',
  16.           height: '12',
  17.           class: 'c-black-border_white-button',
  18.         }%}
  19.       </div>
  20.     </div>
  21.     <div class="pc-style">
  22.       <div class="pg_index_news_button">
  23.         {% include "components/common/_button.html.twig" with {
  24.           text: '一覧を見る',
  25.           src: 'build/images/common/arrow_red.svg',
  26.           href: path('news_index'),
  27.           width: '8',
  28.           height: '12',
  29.           class: 'c-black-border_white-button',
  30.         }%}
  31.       </div>
  32.     </div>
  33.   </div>
  34. </section>