Last commit july 5th

This commit is contained in:
2024-07-05 13:46:23 +02:00
parent dad0d86e8c
commit b0e4dfbb76
24982 changed files with 2621219 additions and 413 deletions

View File

@@ -1,17 +1,32 @@
{% extends 'base.html.twig' %}
{% block title %}Hello ConferenceController!{% endblock %}
{% block title %}Conference Guestbook{% 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>
<h2 class="mb-5">
{{ 'Give your feedback!'|trans }}
</h2>
{% for conference in conferences %}
<h4>{{ conference }}</h4>
<p>
<a href="{{ path('conference', { slug: conference.slug }) }}">View</a>
</p>
{% for row in conferences|batch(4) %}
<div class="row">
{% for conference in row %}
<div class="col-12 col-md-6 col-lg-3 mb-4">
<div class="card border shadow lift">
<div class="card-body">
<div class="card-title">
<h4 class="font-weight-light">
{{ conference }}
</h4>
</div>
<a href="{{ path('conference', { slug: conference.slug }) }}"
class="btn btn-sm btn-primary stretched-link">
{{ 'View'|trans }}
</a>
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
{% endblock %}