This commit is contained in:
dolphinau 2025-09-07 02:31:24 +02:00
parent d261361cb4
commit b9f6daa55d
4 changed files with 44 additions and 3 deletions

View file

@ -12,7 +12,7 @@ header {
height: 520px;
background-image: url(/chapelle.png);
background-position: center;
background-color: rgba(244, 244, 244, 0.286);
/*background-color: rgba(244, 244, 244, 0.1);*/
background-blend-mode: overlay;
}
@ -321,6 +321,11 @@ main {
main {
max-width: 90%;
padding: 0;
margin-top: 30px;
}
.home {
padding: 0;
}
.concert-entry {
@ -445,6 +450,14 @@ footer {
/* Single */
.event {
display: block;
}
.event-date {
color: #da1e2c;
}
.event h2 {
margin-top: 2em;
}
@ -452,6 +465,7 @@ footer {
.artists-table {
gap: 10px;
display: flex;
flex-direction: row;
}
.event-cover {
@ -477,3 +491,20 @@ footer {
.artist-description {
text-align: center;
}
@media (max-width: 750px) {
.event {
display: flex;
flex-direction: column;
}
.artists-table {
flex-direction: column;
}
.event-cover {
align-self: center;
padding: 0;
margin-bottom: 30px;
}
}

View file

@ -35,8 +35,9 @@ Depuis 2 autres OPUS ont été créés, pointant des époques particulières de
## Liens utiles
- [Billeterie](https://www.helloasso.com/associations/association-des-amis-de-la-chapelle-victoria-de-grasse/evenements/tickets-vols-au-dessus-du-volcan)
- [Isabelle Chemin: Instagram](https://www.instagram.com/chemin.dessens/?hl=fr)
- [Page officiel vols volcan](https://vols-volcan.com/)
- [Page officiel du spectacle](https://vols-volcan.com/opus-1/)
- [Page officiel de présentation de lassociation Chemindessens](https://vols-volcan.com/qui-sommes-nous/)
- [Page officiel de lassociation Chemindessens](https://vols-volcan.com/qui-sommes-nous/)
{ .event-links }

View file

@ -1,3 +1,4 @@
{{ define "main" }}
<div class="event">{{ .Content }}</div>
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ end }}

View file

@ -0,0 +1,8 @@
{{ define "main" }}
<h3 class="event-date">
{{ $t := time.AsTime .Params.ConcertDate }}
{{ $format := "Monday 2 Jan 2006 15h04" }}
{{ time.Format $format $t | humanize }}
</h3>
<div class="event">{{ .Content }}</div>
{{ end }}