show_rubrique.html.twig 640 Bytes
Newer Older
Damien Moulard committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{% extends 'common/layout.html.twig' %}

{% block content %}
<div class='container newslist mt-5'>
  <h1>{{rubrique.name}}</h1>
  	<div class="my-3 p-3 bg-white rounded box-shadow">
		{% if rubrique.media is not null %}
			{% thumbnail rubrique.media, 'small' %}
		{% endif %}
		<p>{{rubrique.content|raw}}</p>
		<h3>{{ 'Prestataires'|trans }} : </h3>
		{% for prestataire in rubrique.prestataires %}
	       <div class="my-3 p-3 bg-grey rounded box-shadow">
	        <span><a href="{{ path('show_prestataire', {'slug': prestataire.slug}) }}">{{prestataire.raison}}</a></span>
	       </div>
	    {% endfor %}
	</div>
</div>
{% endblock %}