6
0
Fork 0

Eerste ondersteuning ingebouwd voor personen binnen de organisatie

This commit is contained in:
Michael Boelen 2023-05-07 17:06:32 +02:00
parent d817968bf3
commit 1e95d97e3b
4 changed files with 38 additions and 2 deletions

View file

View file

@ -0,0 +1,16 @@
---
author: "Michael Boelen"
categories:
- organisatie
date: 2023-05-07T13:08:32+02:00
description:
lastmod: 2023-05-07T13:08:32+02:00
tags:
- organisatie
- actieve-leden
slug: michael-boelen
title: "Michael Boelen"
type: person
---
Michael is betrokken bij de randzaken van onze vereniging. Denk hierbij aan de PR, social media, website. Aangezien evenementen zoals onze conferenties een belangrijk onderdeel vormen voor de vereniging, ondersteunt Michael tevens de programmacommissie.

View file

@ -4,12 +4,17 @@
"email": "michael@nluug.nl",
"gender": "male",
"nationality": "Dutch",
"thumbnail": "/afbeeldingen/personen/michael-boelen.png",
"website": {
"name": "michaelboelen.com",
"url": "https://michaelboelen.com/"
},
"social": {
"github": "mboelen",
"twitter": "mboelen",
"instagram": "",
"linkedin": "michael-boelen",
"mastodon": "mboelen@mastodon.social",
"mastodon_url": "https://mastodon.social/mboelen"
"mastodon": "@mboelen@mastodon.social",
"mastodon_url": "https://mastodon.social/@mboelen"
}
}

View file

@ -0,0 +1,15 @@
{{ define "main" }}
{{ with (index .Site.Data.personen (substr $.File.LogicalName 0 -4)) }}
{{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }}
{{ .Content }}
<h3>Contact</h3>
<ul>
{{ if .email }}<li>E-mail: {{ .email }}</li>{{ end }}
{{ if .website }}<li><a href="{{ .website.url }}" rel="nofollow">{{ .website.name }}</a></li>{{ end }}
</ul>
<h3>Social media</h3>
{{ if .social.mastodon }}<a href="{{ .social.mastodon_url }}">{{ .social.mastodon }}</a>{{ end }}
{{ end }}
{{ end }}