fix: wrong location shown, button issues
This commit is contained in:
parent
13d5045308
commit
34ad96e74e
2 changed files with 7 additions and 4 deletions
|
@ -2,7 +2,6 @@
|
||||||
title = 'Talks'
|
title = 'Talks'
|
||||||
date = 2024-02-08T18:25:50+01:00
|
date = 2024-02-08T18:25:50+01:00
|
||||||
draft = false
|
draft = false
|
||||||
layout = "talks"
|
|
||||||
+++
|
+++
|
||||||
this are most (if not all) of the talks that ive seen, either online or live during conferences and events ive traveled to.
|
this are most (if not all) of the talks that ive seen, either online or live during conferences and events ive traveled to.
|
||||||
{{< talks >}}
|
{{< talks >}}
|
||||||
|
|
|
@ -12,13 +12,16 @@
|
||||||
<!-- Display location buttons -->
|
<!-- Display location buttons -->
|
||||||
<div id="locationButtons">
|
<div id="locationButtons">
|
||||||
{{ range $locations }}
|
{{ range $locations }}
|
||||||
<button class="locationButton" data-location="{{ . }}">{{ . }}</button>
|
<!-- Apply inline styles to the button -->
|
||||||
|
<button class="locationButton" data-location="{{ . }}" style="font-family: 'Open Sans', sans-serif; font-size: 16px; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; color: #000; cursor: pointer; border: 3px solid; padding: 0.25em 0.5em; box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px; position: relative; user-select: none; -webkit-user-select: none; touch-action: manipulation;">
|
||||||
|
{{ . }}
|
||||||
|
</button>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Display talks for each location -->
|
<!-- Display talks for each location -->
|
||||||
{{ range $locations }}
|
{{ range $locations }}
|
||||||
<div class="talksContainer" id="talks_{{ . }}" style="display: none;">
|
<div class="talksContainer" id="talks_{{ . }}" style="display: none;">
|
||||||
<h2>{{ . }}</h2>
|
|
||||||
<ul>
|
<ul>
|
||||||
{{ $currentLocation := . }}
|
{{ $currentLocation := . }}
|
||||||
{{ range $json.talks }}
|
{{ range $json.talks }}
|
||||||
|
@ -40,8 +43,9 @@
|
||||||
{{ end }}<br>
|
{{ end }}<br>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
<strong>Location:</strong> {{ .location }}<br>
|
||||||
<strong>Date:</strong> {{ .date }}<br>
|
<strong>Date:</strong> {{ .date }}<br>
|
||||||
<strong>URL:</strong> <a href="{{ .url }}">{{ .url }}</a><br>
|
<strong>URL:</strong> <a href="{{ .url }}" target="_blank">{{ .url }}</a><br>
|
||||||
<strong>Description:</strong> {{ .description }}<br><br>
|
<strong>Description:</strong> {{ .description }}<br><br>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue