beesgospel/templates/index.html

66 lines
2.6 KiB
HTML
Raw Permalink Normal View History

2025-07-08 20:37:02 +02:00
{% extends "base.html" %}
{% block meta %}
{{ block.super }}
<meta name="description" content="Page daccueil du site Web de la chorale du Gospel de lAbeille, La Chaux-de-Fonds, Suisse">
{% endblock %}
2025-09-06 20:19:37 +02:00
{% block bodyclass %}home{% endblock %}
{% block navbar-expand %}{% endblock %}
2025-07-08 20:37:02 +02:00
{% block content %}
<div class="homediv">
<div class="hometitle text-center">
<a class="homeurl harlow" href="{% url 'presentation' %}">
<div class="d-flex justify-content-center mb-4">
<div class="flex-grow-1 overleft red-bottom">&nbsp;</div>
<div class="main-text red-bottom">The Bees Gospel Singers</div>
<div class="flex-grow-1 overright">&nbsp;</div>
</div>
<div class="d-flex justify-content-center">
<div class="flex-grow-1 overleft">&nbsp;</div>
2025-09-06 20:18:54 +02:00
<div class="main-text red-bottom">
2025-11-02 23:06:09 +01:00
<img id="abeille" alt="abeille, logo de la chorale" src="{% static 'img/abeille.webp' %}"> Gospel de lAbeille
2025-09-06 20:18:54 +02:00
</div>
2025-07-08 20:37:02 +02:00
<div class="flex-grow-1 overright red-bottom">&nbsp;</div>
</div>
</a>
</div>
<div class="agenda_container">
{% for item in items %}
<div class="row justify-content-center mt-3 agenda_line">
2025-08-19 20:42:00 +02:00
<div class="col-12 text-end mt-2">
<span class="text-black rounded align-self-center fw-bold p-2 date_agenda">
{{ item.date_heure|date:'D d F à H:i' }}
</span>
</div>
<div class="col-12 text-end mt-2">
<a class="text-white" href="{% url 'agenda' %}">
<span class="ps-3 fw-bold">{{ item.titre }} ({{ item.lieu }})</span>
</a>
</div>
</div>
2025-08-19 21:10:15 +02:00
{% endfor %}
2025-08-27 18:29:54 +02:00
<div class="row justify-content-center mt-3 agenda_line">
<div class="col-12 text-end mt-2">
<a class="text-white fst-italic" href="{% url 'agenda' %}">Agenda complet…</a>
</div>
</div>
2025-08-19 21:10:15 +02:00
</div>
2025-07-08 20:37:02 +02:00
</div>
<div id="homeaudio" class="d-flex justify-content-center mt-5">
2025-07-08 20:37:02 +02:00
<div class="text-start">
2025-08-27 18:29:23 +02:00
<i>Écouter un extrait:</i><br>
<audio controls src="{% static 'songs/WeShallOvercome-Extrait.mp3' %}"></audio>
<br>
<p class="text-end"><i><a href="{% url 'medias' %}">Plus…</a></i></p>
2025-07-08 20:37:02 +02:00
</div>
</div>
<hr>
<div class="text-end mb-3">
<small><i>Avec le soutien de:</i></small>
<a href="https://www.chaux-de-fonds.ch/"><img class="logo_cdf ms-4" src="{% static 'img/cdf_blanc.svg' %}"></a>
</div>
2025-07-08 20:37:02 +02:00
{% endblock %}