templates/index/news/index.html.twig line 1

Open in your IDE?
  1. {% extends 'index/layout.html.twig' %}
  2. {% block title -%}お知らせ{%- endblock %}
  3. {% block header_title %}お知らせ{% endblock %}
  4. {% block stylesheet %}
  5.   <link rel="stylesheet" href="/css/news.css">
  6. {% endblock %}
  7. {% block main %}
  8.   <main>
  9.     <ul class="news_list">
  10.       {% for post in pagination %}
  11.       <li>
  12.         <a href="{{ path('news_show', {id: post.id}) }}" class="noread"><!--既読-->
  13.           <article>
  14.             <time class="list_time" datetime="{{ post.publishedAt | date('Y-m-d') }}">{{ post.publishedAt | date('Y/m/d') }}</time>
  15.             <h2 class="list_title">{{ post.title }}</h2>
  16.           </article>
  17.         </a>
  18.       </li>
  19.       {% endfor %}
  20.     </ul>
  21.   </main>
  22. {% endblock %}
  23. {% block js %}
  24. {% endblock %}