<a href="{{ path('report_detail', {id: item.id}) }}" class="js-infiniteScroll--node">
<div style="background-image: url({% include "components/entry/report/_thumbnail.html.twig" %})" class="img_reportBg">
{# <img src="{% include "components/entry/report/_thumbnail.html.twig" %}" alt=""> #}
</div>
<div class="reportListContainer__item">
<div class="img__reportMember" style="background-image:url({% include "components/entry/report/_reporter_image.html.twig" with {reporter: item.ReportWriter} %})"></div>
<div class="reportListContainerItem__contents">
<span class="category">
{{ item.Entry.categoryLocale(app.request.locale) }}
</span>
<h3>{{ item.Entry.trans('title') }}</h3>
<h2>{{ item.trans('title') }}</h2>
<p>{{ item.trans('content')|strim_width(38) }}</p>
<div class="date_name">
<span>{{ item.entryDate|date('Y.m.d') }}</span>
<span>{{ item.ReportWriter.nameLocale(app.request.locale) }}</span>
</div>
</div>
</div>
</a>