20 lines
688 B
HTML
20 lines
688 B
HTML
{{ $sites := where site.RegularPages "Section" "upcoming" }}
|
|
{{ if gt (len $sites) 0 }}
|
|
<h2>Évènements à venir</h2>
|
|
<div class="upcoming">
|
|
{{ range sort $sites ".Params.ConcertDate" }}
|
|
<div class="upcoming-entry">
|
|
<p class="concert-date">
|
|
{{ $t := time.AsTime .Params.ConcertDate }}
|
|
{{ $format1 := "Monday 2 Jan 2006" }}
|
|
{{ $format2 := "Jan 2006" }}
|
|
|
|
|
|
<!-- TODO: Try format1 -->
|
|
{{ time.Format $format2 $t | humanize }}
|
|
</p>
|
|
<h2>{{ .LinkTitle }}</h2>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|