fix bug
This commit is contained in:
parent
d261361cb4
commit
b9f6daa55d
4 changed files with 44 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 l’association Chemindessens](https://vols-volcan.com/qui-sommes-nous/)
|
||||
- [Page officiel de l’association Chemindessens](https://vols-volcan.com/qui-sommes-nous/)
|
||||
{ .event-links }
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{{ define "main" }}
|
||||
<div class="event">{{ .Content }}</div>
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
|
|
|
|||
8
layouts/events/single.html
Normal file
8
layouts/events/single.html
Normal 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue