6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/themes/nluug/layouts/person/single.html

73 lines
2.5 KiB
HTML

{{ define "main" }}
{{ $text := .Content }}
{{ $.Scratch.Set "committee_member" slice }}
{{ $.Scratch.Set "speaker_at_events" slice }}
{{ with (index .Site.Data.personen (substr $.File.LogicalName 0 -3)) }}
{{ $personid := .id }}
{{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }}
{{ $text }}
{{ range where $.Site.RegularPages.ByTitle "Section" "organisatie" }}
{{ if .Params.team_members }}
{{ if in .Params.team_members $personid }}
{{ $.Scratch.Add "committee_member" . }}
{{ end }}
{{ end }}
{{ end }}
{{ if (gt ($.Scratch.Get "committee_member" | len) 0) }}
<h2>Organisatie</h2>
<p>{{ .name }} is actief binnen de volgende teams/commissies:</p>
<ul>
{{ range $.Scratch.Get "committee_member" }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}
{{ range where $.Site.RegularPages "Section" "evenementen" }}
{{ if .Params.speakers }}
{{ if in .Params.speakers $personid }}
{{ $.Scratch.Add "speaker_at_events" . }}
{{ end }}
{{ end }}
{{ end }}
{{ if (gt ($.Scratch.Get "speaker_at_events" | len) 0) }}
<h2>Presentaties</h2>
<ul>
{{ range $.Scratch.Get "speaker_at_events" }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}
{{ if or (.email) (.websites) }}
<h2>Contact</h2>
<ul>
{{ if .email }}<li>E-mail: {{ .email }}</li>{{ end }}
{{ if .websites }}
{{ range .websites }}
<li><a href="{{ .url }}" rel="nofollow noopener">{{ .name }}</a></li>
{{ end }}
{{ end }}
</ul>
{{ end }}
{{ if or (.social.mastodon) (.social.twitter) }}
<h2>Social media</h2>
<ul class="list">
{{ if .social.mastodon }}
<li><img src="/afbeeldingen/iconen/mastodon.svg" height="{{ $.Site.Params.smallIconSize }}" width="{{ $.Site.Params.smallIconSize }}" alt="Mastodon"> <a href="{{ .social.mastodon_url }}">{{ .social.mastodon }}</a></li>
{{ end }}
{{ if .social.twitter }}
<li><img src="/afbeeldingen/iconen/twitter.svg" height="{{ $.Site.Params.smallIconSize }}" width="{{ $.Site.Params.smallIconSize }}" alt="Twitter"> <a href="https://twitter.com/{{ .social.twitter }}">{{ .social.twitter }}</a></li>
{{ end }}
</ul>
{{ end }}
{{ end }}
{{ end }}