11 lines
450 B
HTML
11 lines
450 B
HTML
<ul class="mb-0">
|
|
{{- range $event := .Events }}
|
|
<li data-event-id="{{ $event.Id }}">
|
|
In {{ time $event.Year $event.Seconds72 }},
|
|
{{ html ($event.Details.Html ($.Context.WithEvent $event)) }}
|
|
{{ if ne .Collection -1 }} <a class="collection" href="./collection/{{.Collection}}"><i
|
|
class="fa-solid fa-magnifying-glass fa-xs"></i></a>{{end}}
|
|
{{ json $event.Details }}
|
|
</li>
|
|
{{- end}}
|
|
</ul> |