Eerste ondersteuning ingebouwd voor personen binnen de organisatie
This commit is contained in:
parent
d817968bf3
commit
1e95d97e3b
0
content/organisatie/personen/_index.rst
Normal file
0
content/organisatie/personen/_index.rst
Normal file
16
content/organisatie/personen/michael-boelen.rst
Normal file
16
content/organisatie/personen/michael-boelen.rst
Normal 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.
|
|
@ -4,12 +4,17 @@
|
||||||
"email": "michael@nluug.nl",
|
"email": "michael@nluug.nl",
|
||||||
"gender": "male",
|
"gender": "male",
|
||||||
"nationality": "Dutch",
|
"nationality": "Dutch",
|
||||||
|
"thumbnail": "/afbeeldingen/personen/michael-boelen.png",
|
||||||
|
"website": {
|
||||||
|
"name": "michaelboelen.com",
|
||||||
|
"url": "https://michaelboelen.com/"
|
||||||
|
},
|
||||||
"social": {
|
"social": {
|
||||||
"github": "mboelen",
|
"github": "mboelen",
|
||||||
"twitter": "mboelen",
|
"twitter": "mboelen",
|
||||||
"instagram": "",
|
"instagram": "",
|
||||||
"linkedin": "michael-boelen",
|
"linkedin": "michael-boelen",
|
||||||
"mastodon": "mboelen@mastodon.social",
|
"mastodon": "@mboelen@mastodon.social",
|
||||||
"mastodon_url": "https://mastodon.social/mboelen"
|
"mastodon_url": "https://mastodon.social/@mboelen"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
15
themes/nluug/layouts/person/single.html
Normal file
15
themes/nluug/layouts/person/single.html
Normal 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 }}
|
Reference in a new issue