{% extends 'base.html.twig' %}
{% block title 'nouvelles' %}
{% block body %}
<!-- page title -->
<section class="page-title-section" data-background="{{ vich_uploader_asset(img, 'imageFile') }}">
<div class="container">
<div class="row">
<div class="col-md-8">
<ul class="list-inline custom-breadcrumb mb-2">
<li class="list-inline-item">
<a class="h2 text-primary font-secondary" href="index.html">CRSAT</a>
</li>
<li class="list-inline-item text-white h3 font-secondary nasted">
Nouvelle
</li>
</ul>
<p class="text-lighten mb-0"></p>
</div>
</div>
</div>
</section>
<!-- /page title -->
<!-- notice -->
<section class="section">
<div class="container">
<div class="row">
<div class="col-12">
<ul
class="list-unstyled">
<!-- notice item -->
{% for news in news %}
<li class="d-md-table mb-4 w-100 border-bottom hover-shadow">
<div class="d-md-table-cell text-center p-4 bg-primary text-white mb-4 mb-md-0">
<span class="h2 d-block">{{ news.aday}}
</span>
{{news.amonth}},{{news.ayear}}
</div>
<div class="d-md-table-cell px-4 vertical-align-middle mb-4 mb-md-0">
<a href="notice-single.html" class="h4 mb-3 d-block">{{ news.title }}
</a>
<p class="mb-0">
{{ news.description | length > 100 ? news.description | slice(0, 200) ~ ' ...' : news.description }}
</p>
</div>
<div class="d-md-table-cell text-right pr-0 pr-md-4">
<a href=" {{ path('news.single', {id: news.id}) }} " class="btn btn-primary">En savoir plus</a>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="blog-pagination">
<ul class="justify-content-center">
{{ knp_pagination_render(news) }}
</ul>
</div>
</div>
</section>
{% endblock %}