Links en iconen voor social media toevoegen en corrigeren

This commit is contained in:
Michael Boelen 2023-05-15 21:57:57 +02:00
parent 6672f95745
commit 517629f575
3 changed files with 25 additions and 9 deletions

View file

@ -13,8 +13,14 @@ logo = "/assets/favicon.ico"
# Grootte van iconen (SVG-bestanden) zoals van social media # Grootte van iconen (SVG-bestanden) zoals van social media
smallIconSize = 16 smallIconSize = 16
mediumIconSize = 32
# Kanarie: Deze tekst (en vogel) gebruiken we om lege waardes op te sporen in output # Kanarie: Deze tekst (en vogel) gebruiken we om lege waardes op te sporen in output
textNoTitle = "Geen titel 🐦" textNoTitle = "Geen titel 🐦"
# Social
mastodon_instance = "https://nluug.social/"
mastodon_handle = "nluug"
twitter_handle = "nluug"
# EOF # EOF

View file

@ -1,14 +1,24 @@
<footer> <footer>
<h2>Help mee</h2> <h2>Help mee</h2>
{{ with .File }}<a class="button" href="https://github.com/NLUUG/website/edit/main/content/{{ .Path }}">Verbeter deze pagina</a>{{ end }} {{ with .File }}<a class="btn btn-cta" href="https://github.com/NLUUG/website/edit/main/content/{{ .Path }}">Verbeter deze pagina</a>{{ end }}
<h2>Volg ons</h2> <h2>Volg ons</h2>
<p>Beschikbare feeds: {{ $iconsize := .Site.Params.mediumIconSize }}
{{ with .Site.Params.twitter_handle }}
<a href="https://twitter.com/{{ . }}"><img src="/afbeeldingen/iconen/twitter.svg" height="{{ $iconsize }}" width="{{ $iconsize }}" alt="Twitter"></a>
{{ end }}
{{ if and
(.Site.Params.mastodon_handle)
(.Site.Params.mastodon_instance)
}}
<a href="{{ .Site.Params.mastodon_instance }}@{{ .Site.Params.mastodon_handle }}"><img src="/afbeeldingen/iconen/mastodon.svg" height="{{ $iconsize }}" width="{{ $iconsize }}" alt="Mastodon"></a>
{{ end }}
<p>Beschikbare feeds:
<a href="{{ absURL "atom.xml" }}">Atom</a> | <a href="{{ absURL "feed.json" }}">JSON</a> <a href="{{ absURL "atom.xml" }}">Atom</a> | <a href="{{ absURL "feed.json" }}">JSON</a>
{{ with .Site.GetPage "/website/laatste-wijzigingen.rst" }}| <a href="{{ .Permalink }}">{{ .Title }}</a>{{ end }} {{ with .Site.GetPage "/website/laatste-wijzigingen.rst" }} | <a href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}
{{ with .Site.GetPage "/website" }}| <a href="{{ .Permalink }}">Website details</a>{{ end }} {{ with .Site.GetPage "/website/sitemap" }} | <a href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}
</p> </p>
{{ if .Site.IsServer }} {{ if .Site.IsServer }}
<div style="background-color: yellow;"> <div style="background-color: yellow;">

View file

@ -1,5 +1,4 @@
{{ define "main" }} {{ define "main" }}
{{ $icon_size := 20 }}
{{ $text := .Content }} {{ $text := .Content }}
{{ with (index .Site.Data.personen (substr $.File.LogicalName 0 -4)) }} {{ with (index .Site.Data.personen (substr $.File.LogicalName 0 -4)) }}
{{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }} {{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }}
@ -9,7 +8,7 @@
{{ if .email }}<li>E-mail: {{ .email }}</li>{{ end }} {{ if .email }}<li>E-mail: {{ .email }}</li>{{ end }}
{{ if .websites }} {{ if .websites }}
{{ range .websites }} {{ range .websites }}
<li><a href="{{ .url }}" rel="nofollow">{{ .name }}</a></li> <li><a href="{{ .url }}" rel="nofollow noopener">{{ .name }}</a></li>
{{ end }} {{ end }}
{{ end }} {{ end }}
</ul> </ul>
@ -19,12 +18,13 @@
(.social.twitter) (.social.twitter)
}} }}
<h3>Social media</h3> <h3>Social media</h3>
<ul class="list"> <ul class="list">
{{ if .social.mastodon }} {{ if .social.mastodon }}
<li><a href="{{ .social.mastodon_url }}"><img src="/afbeeldingen/iconen/mastodon.svg" height="{{ $icon_size }}" width="{{ $icon_size }}" alt="Mastodon" /> {{ .social.mastodon }}</a></li> <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 }} {{ end }}
{{ if .social.twitter }} {{ if .social.twitter }}
<li><a href="https://twitter.com/{{ .social.twitter }}"><img src="/afbeeldingen/iconen/twitter.svg" height="{{ $icon_size }}" width="{{ $icon_size }}" alt="Twitter" /> {{ .social.twitter }}</a></li> <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 }} {{ end }}
</ul> </ul>
{{ end }} {{ end }}