Toevoegen foto's en informatie sprekers
This commit is contained in:
parent
8e8e67364f
commit
f308acfe7e
11
content/evenementen/sprekers/index.md
Normal file
11
content/evenementen/sprekers/index.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
categories:
|
||||||
|
- evenementen
|
||||||
|
date: 2023-06-07T13:25:27+02:00
|
||||||
|
description: "Dit project heeft als doel het vervangen van de huidige website en haar content door een moderne variant."
|
||||||
|
tags:
|
||||||
|
- sprekers
|
||||||
|
slug:
|
||||||
|
title: "Sprekers"
|
||||||
|
layout: speakers
|
||||||
|
---
|
18
data/personen/cristian-hesselman.json
Normal file
18
data/personen/cristian-hesselman.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"id": "cristian-hesselman",
|
||||||
|
"name": "Cristian Hesselman",
|
||||||
|
"email": "",
|
||||||
|
"gender": "Male",
|
||||||
|
"honorary_member": false,
|
||||||
|
"nationality": "Dutch",
|
||||||
|
"thumbnail": "/afbeeldingen/personen/cristian-hesselman-200x200.jpg",
|
||||||
|
"social": {
|
||||||
|
"github": "",
|
||||||
|
"instagram": "",
|
||||||
|
"linkedin": "https://www.linkedin.com/in/cristian-hesselman-b774091/",
|
||||||
|
"mastodon": "@hesselma@mastodon.social",
|
||||||
|
"mastodon_url": "https://mastodon.social/@hesselma",
|
||||||
|
"twitter": "hesselma"
|
||||||
|
},
|
||||||
|
"speaker": true
|
||||||
|
}
|
18
data/personen/rix-groenboom.json
Normal file
18
data/personen/rix-groenboom.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"id": "rix-groenboom",
|
||||||
|
"name": "Rix Groenboom",
|
||||||
|
"email": "",
|
||||||
|
"gender": "Male",
|
||||||
|
"honorary_member": false,
|
||||||
|
"nationality": "Dutch",
|
||||||
|
"thumbnail": "/afbeeldingen/personen/rix-groenboom-200x200.jpg",
|
||||||
|
"social": {
|
||||||
|
"github": "",
|
||||||
|
"instagram": "",
|
||||||
|
"linkedin": "",
|
||||||
|
"mastodon": "",
|
||||||
|
"mastodon_url": "",
|
||||||
|
"twitter": ""
|
||||||
|
},
|
||||||
|
"speaker": true
|
||||||
|
}
|
14
themes/nluug/layouts/evenementen/speakers.html
Normal file
14
themes/nluug/layouts/evenementen/speakers.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
{{ .Content }}
|
||||||
|
|
||||||
|
<h2>Sprekers</h2>
|
||||||
|
{{ range $key,$val := $.Site.Data.personen }}
|
||||||
|
{{ if eq $val.speaker true }}
|
||||||
|
<h3>» {{ .name }}</h3>
|
||||||
|
{{ partial "show-image-of-person.html" (dict "context" . "profile_details" $val "hide_figcaption" true) }}
|
||||||
|
{{ $firstname := index (split .name " ") 0 }}
|
||||||
|
{{ if .profile_page }}<a href="{{ .profile_page }}">Meer over {{ $firstname }}</a>{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ end }}
|
Reference in a new issue