2023-05-05 16:36:10 +02:00
< footer >
2023-05-18 20:32:09 +02:00
{{ $iconsize_footer := 32 }}
2023-05-19 16:04:19 +02:00
2023-05-19 16:15:21 +02:00
< div class = "three-column-grid" >
< div >
< h2 > Help mee< / h2 >
2023-05-21 01:17:59 +02:00
{{ if .File }}
< a class = "btn btn-cta" href = "https://github.com/NLUUG/website/edit/main/content/{{ .File.Path }}" target = "_blank" rel = "noopener" > Verbeter deze pagina< / a >
{{ else }}
< a class = "btn btn-cta" href = "{{ relURL " website / feedback / " } } " > Deel feedback< / a >
{{ end }}
2023-05-19 16:15:21 +02:00
< / div >
< div >
{{ $iconsize := .Site.Params.mediumIconSize }}
2023-05-20 19:59:58 +02:00
< h2 > Volg ons< / h2 >
< nav aria-label = "Social media" >
2023-05-19 16:15:21 +02:00
{{ with .Site.Params.twitter_handle }}
2023-05-19 16:37:15 +02:00
< a class = "icon" href = "https://twitter.com/{{ . }}" target = "_blank" rel = "noopener" > {{- partial "show-svg-icon.html" (dict "context" . "icon" "twitter" "iconsize" $iconsize_footer) -}}< / a >
2023-05-19 16:15:21 +02:00
{{ end }}
{{ if and
(.Site.Params.mastodon_handle)
(.Site.Params.mastodon_instance)
}}
2023-05-19 16:37:15 +02:00
< a class = "icon" href = "{{ .Site.Params.mastodon_instance }}@{{ .Site.Params.mastodon_handle }}" target = "_blank" rel = "noopener" > {{ partial "show-svg-icon.html" (dict "context" . "icon" "mastodon" "iconsize" $iconsize_footer) }}< / a >
2023-05-19 16:15:21 +02:00
{{ end }}
2023-05-19 16:37:15 +02:00
< a class = "icon" href = "https://www.linkedin.com/groups/130891/" target = "_blank" rel = "noopener" > {{ partial "show-svg-icon.html" (dict "context" . "icon" "linkedin" "iconsize" $iconsize_footer) }}< / a >
< a class = "icon" href = "https://www.meetup.com/nluug-dutch-unix-linux-user-group/" target = "_blank" rel = "noopener" > {{ partial "show-svg-icon.html" (dict "context" . "icon" "meetup" "iconsize" $iconsize_footer) }}< / a >
< a class = "icon" href = "{{ absURL " atom . xml " } } " target = "_blank" rel = "noopener" > {{ partial "show-svg-icon.html" (dict "context" . "icon" "rss" "iconsize" $iconsize_footer) }}< / a >
< a class = "icon" href = "{{ absURL " feed . json " } } " target = "_blank" rel = "noopener" > {{ partial "show-svg-icon.html" (dict "context" . "icon" "database" "iconsize" $iconsize_footer) }}< / a >
2023-05-20 19:59:58 +02:00
< / nav >
2023-05-19 16:15:21 +02:00
< / div >
< div >
< h2 > Nuttige links< / h2 >
2023-05-20 19:59:58 +02:00
< nav aria-label = "Footer links" >
< ul >
< li > < a href = "{{ absURL " contact / " } } " > Contact< / a > < / li >
< li > < a href = "{{ absURL " privacy / " } } " > Privacy< / a > < / li >
< / ul >
< / nav >
2023-05-19 16:15:21 +02:00
< / div >
< / div >
2023-05-19 16:04:19 +02:00
< small > Voor meer informatie over deze {{ with .Site.GetPage "/website/" }}< a href = "{{ .Permalink }}" > {{ .Title | lower }}< / a > {{ end }}, zie de {{ with .Site.GetPage "/website/sitemap" }}< a href = "{{ .Permalink }}" > {{ .Title | lower }}< / a > {{ end }}, {{ with .Site.GetPage "/website/laatste-wijzigingen.rst" }}< a href = "{{ .Permalink }}" > {{ .Title | lower }}< / a > {{ end }} en de {{ with .Site.GetPage "/website/stats-for-nerds" }}< a href = "{{ .Permalink }}" > {{ .Title }}< / a > {{ end }}< / small >
2023-05-15 11:04:58 +02:00
{{ if .Site.IsServer }}
< div style = "background-color: yellow;" >
Kind = {{ .Kind }}< br >
Layout = {{ .Layout }}< br >
Type = {{ .Type }}< br >
Section = {{ .Section }}< br >
BundleType = {{ .BundleType }}< br >
IsPage = {{ .IsPage }}< br >
IsSection = {{ .IsSection }}< br >
< / div >
{{ end }}
2023-05-05 16:36:10 +02:00
< / footer >