{% extends 'index/layout.html.twig' %}
{% block title -%}お知らせ{%- endblock %}
{% block header_title %}お知らせ{% endblock %}
{% block stylesheet %}
<link rel="stylesheet" href="/css/news.css">
{% endblock %}
{% block main %}
<main>
<ul class="news_list">
{% for post in pagination %}
<li>
<a href="{{ path('news_show', {id: post.id}) }}" class="noread"><!--既読-->
<article>
<time class="list_time" datetime="{{ post.publishedAt | date('Y-m-d') }}">{{ post.publishedAt | date('Y/m/d') }}</time>
<h2 class="list_title">{{ post.title }}</h2>
</article>
</a>
</li>
{% endfor %}
</ul>
</main>
{% endblock %}
{% block js %}
{% endblock %}