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.     <div class="pg_index_news_title">
  4.     {% include "components/common/_main-title.html.twig" with {
  5.       title: 'お知らせ',
  6.       text: '-NEWS-',
  7.       class: 'c-main-title',
  8.     }%}
  9.     </div>
  10.     {% include "components/news/_news-item.html.twig" %}
  11.     <div class="pg_index_news_button">
  12.       {% include "components/common/_button.html.twig" with {
  13.         text: 'VIEW MORE',
  14.         src: 'build/images/common/double_arrow_white.svg',
  15.         href: path('news_index'),
  16.         width: '12',
  17.         height: '10',
  18.         class: 'c-white-border-more_button',
  19.         hover_src:'build/images/common/double_arrow_black.svg',
  20.       }%}
  21.     </div>
  22.   </div>
  23. </section>