Files
SimfonyBasics/templates/conference/index.html.twig
2024-07-03 12:32:09 +02:00

18 lines
534 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Hello ConferenceController!{% endblock %}
{% block body %}
<style>
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>
{% for conference in conferences %}
<h4>{{ conference }}</h4>
<p>
<a href="{{ path('conference', { slug: conference.slug }) }}">View</a>
</p>
{% endfor %}
{% endblock %}