Refactor to a speaker content type

This commit is contained in:
Oliver Davies 2024-02-06 08:00:00 +00:00
parent 10d6db671e
commit 837ed51ef2
16 changed files with 67 additions and 26 deletions

View file

@ -1,3 +1,5 @@
sculpin_content_types:
speakers:
permalink: /speaker/:basename/
posts:
enabled: false

View file

@ -1,27 +1,2 @@
name: 'PHPSW'
locale: en
speakers:
- name: Oliver Davies
imageUrl: https://secure.meetupstatic.com/photos/member/c/8/8/1/highres_317091329.jpeg
- name: Robin Hodson
imageUrl: https://secure.meetupstatic.com/photos/member/2/f/e/1/highres_243972257.jpeg
- name: Rob Allen
imageUrl: https://secure.meetupstatic.com/photos/member/3/b/f/2/highres_312615346.jpeg
- name: Dan Leech
imageUrl: https://secure.meetupstatic.com/photos/member/b/e/3/a/highres_257208698.jpeg
- name: Mike Karthauser
imageUrl: https://secure.meetupstatic.com/photos/member/2/3/5/2/highres_80709042.jpeg
- name: Nigel Dunn
imageUrl: https://secure.meetupstatic.com/photos/member/b/b/b/4/highres_131268052.jpeg
- name: Naomi Gotts
imageUrl: https://secure.meetupstatic.com/photos/member/5/5/2/highres_311941362.jpeg
- name: Ryan Lee
imageUrl: https://secure.meetupstatic.com/photos/member/7/c/c/4/highres_273691940.jpeg
- name: James Titcumb
imageUrl: https://secure.meetupstatic.com/photos/member/9/d/3/c/highres_134740252.jpeg
- name: Derick Rethans
imageUrl: https://secure.meetupstatic.com/photos/member/6/3/f/0/highres_276685584.jpeg
- name: Dave Liddament
imageUrl: https://secure.meetupstatic.com/photos/member/9/2/c/4/highres_203797572.jpeg
- name: Ciaran McNulty
imageUrl: /images/ciaran.jpg

View file

@ -0,0 +1 @@
{% extends 'default' %}

View file

@ -0,0 +1,4 @@
---
name: Ciaran McNulty
imageUrl: /images/ciaran.jpg
---

View file

@ -0,0 +1,4 @@
---
name: Dan Leech
imageUrl: https://secure.meetupstatic.com/photos/member/b/e/3/a/highres_257208698.jpeg
---

View file

@ -0,0 +1,6 @@
---
name: Dave Liddament
imageUrl: https://secure.meetupstatic.com/photos/member/9/2/c/4/highres_203797572.jpeg
---
Director and Developer at Lamp Bristol. PHP, Java and Python software developer.

View file

@ -0,0 +1,4 @@
---
name: Derick Rethans
imageUrl: https://secure.meetupstatic.com/photos/member/6/3/f/0/highres_276685584.jpeg
---

View file

@ -0,0 +1,6 @@
---
name: James Titcumb
imageUrl: https://secure.meetupstatic.com/photos/member/9/d/3/c/highres_134740252.jpeg
---
James is the founder of the UK based PHP Hampshire user group, a Zend Certified Engineer and Development Manager at Protected.co.uk.

View file

@ -0,0 +1,6 @@
---
name: Mike Karthauser
imageUrl: https://secure.meetupstatic.com/photos/member/2/3/5/2/highres_80709042.jpeg
---
Dev since '98. PHP since '03.

View file

@ -0,0 +1,4 @@
---
name: Naomi Gotts
imageUrl: https://secure.meetupstatic.com/photos/member/5/5/2/highres_311941362.jpeg
---

View file

@ -0,0 +1,4 @@
---
name: Nigel Dunn
imageUrl: https://secure.meetupstatic.com/photos/member/b/b/b/4/highres_131268052.jpeg
---

View file

@ -0,0 +1,6 @@
---
name: Oliver Davies
imageUrl: https://secure.meetupstatic.com/photos/member/c/8/8/1/highres_317091329.jpeg
---
Full Stack Software Consultant. Drupal and PHP expert.

View file

@ -0,0 +1,6 @@
---
name: Rob Allen
imageUrl: https://secure.meetupstatic.com/photos/member/3/b/f/2/highres_312615346.jpeg
---
PHP developer from Worcester.

View file

@ -0,0 +1,6 @@
---
name: Robin Hodson
imageUrl: https://secure.meetupstatic.com/photos/member/2/f/e/1/highres_243972257.jpeg
---
Ready to look for coding/hardware work post-lockdown, now largely recovered from stressful experiences. Accepted work from the government in September/October; currently realigning goals plus getting things I've been working on a bit more tangible.

View file

@ -0,0 +1,4 @@
---
name: Ryan Lee
imageUrl: https://secure.meetupstatic.com/photos/member/7/c/c/4/highres_273691940.jpeg
---

View file

@ -1,5 +1,8 @@
---
layout: default
use: [speakers]
---
{% include 'speakers/recent-speakers' %}
{% include 'speakers/recent-speakers' with {
speakers: data.speakers,
} %}