Refactor concert entry

This commit is contained in:
dolphinau 2025-12-15 14:21:26 +01:00
parent bd59013800
commit e162ace54b
3 changed files with 77 additions and 161 deletions

View file

@ -6,90 +6,7 @@
{{ $currentTime := (time now) }}
{{ $delta := $currentTime.Sub (time .Params.ConcertDate ) }}
{{ if lt $delta 0 }}
<div class="concert-entry">
<p class="concert-date">
{{ $t := time.AsTime .Params.ConcertDate }}
{{ $format := "Monday 2 Jan 2006 15h04" }}
{{ time.Format $format $t | humanize }}
</p>
<div class="concert-cover">
{{ with .Resources.GetMatch "cover.*" }}
<img
src="{{ .RelPermalink }}"
width="{{ .Width }}"
height="{{ .Height }}"
alt="Concert cover"
/>
{{ end }}
</div>
<div class="concert-overview">
<h2>
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
</h2>
<h3>{{ .Summary }}</h3>
<h4>{{ .Description }}</h4>
<img src="bar.png" class="separator" />
<div class="concert-buttons">
<a
class="concert-button"
href="{{ .Params.TicketsLink }}"
>
<img src="billets.png" />
<span>Billets</span>
</a>
<a
class="concert-button"
href="{{ .RelPermalink }}"
>
<img src="info.png" />
<span>Infos</span>
</a>
</div>
</div>
</div>
<div class="concert-entry-small">
<h4 class="concert-date">
{{ $t := time.AsTime .Params.ConcertDate }}
{{ $format := "Monday 2 Jan 2006 15h04" }}
{{ time.Format $format $t | humanize }}
</h4>
<img src="bar.png" class="separator" />
<div class="concert-entry-container">
<div class="concert-cover">
{{ with .Resources.GetMatch "cover.*" }}
<img
src="{{ .RelPermalink }}"
width="{{ .Width }}"
height="{{ .Height }}"
alt="Concert cover"
/>
{{ end }}
</div>
<div class="concert-overview">
<a href="{{ .RelPermalink }}"
><h3>{{ .LinkTitle }}</h3></a
>
<h4>{{ .Description }}</h4>
<p>{{ .Summary }}</p>
</div>
</div>
<img src="bar.png" class="separator" />
<div class="concert-buttons">
<a
class="concert-button"
href="{{ .Params.TicketsLink }}"
>
<img src="billets.png" />
<span>Billets</span>
</a>
<a class="concert-button" href="{{ .RelPermalink }}">
<img src="info.png" />
<span>Infos</span>
</a>
</div>
</div>
{{ partial "events/entry.html" (dict "context" . "tickets" true) }}
{{ end }}
{{ end }}
</div>