diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 217a61d..e195f41 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,7 +32,3 @@ repos: rev: 23.9.1 hooks: - id: black - - repo: https://github.com/kjaymiller/frontmatter-check - rev: "2025.1.1b2" - hooks: - - id: frontmatter-check diff --git a/_data/leadership.json b/_data/leadership.json new file mode 100644 index 0000000..419f4a9 --- /dev/null +++ b/_data/leadership.json @@ -0,0 +1,62 @@ +{ + "Executors": [ + { + "name": "Jay Miller", + "title": "Executor", + "image": "https://github.com/kjaymiller.png", + "alt": "photo of Jay" + }, + { + "name": "Abigail Afi Gbadago", + "title": "Executor (Africa)", + "image": "/assets/images/afi.webp" + }, + { + "name": "Emmanuel Ugwu", + "title": "Vice-Executor (Africa)", + "image": "/assets/images/nuel.webp" + }, + { + "name": "Lazuich Ford", + "title": "Executor (North America)", + "image": "/assets/images/laz.webp" + }, + { + "name": "Keanya Phelps", + "title": "Vice-Executor (North America)", + "image": "/assets/images/keanya.webp" + } + ], + "Leaders": [ + { + "name": "Damilola Oladele", + "title": "Documentation Lead" + }, + { + "name": "Doreen Nangira", + "title": "Code of Conduct Team Lead" + }, + { + "name": "Sandra Ashipala", + "title": "Welcoming Team" + } + ], + "Advisors": ["Benedict Koji Amofah", "Ronald Maravanyika", "Kudzayi Bamhare", "Kojo Idrissa", "Carol Willing", "Jeff Triplett", "Dr. Kari L. Jordan"], + "Council": [ + "Dawn Wages", + "Sarah Abderemane", + "Abigail Mesyenrame Dogbe", + "Velda Kiara", + "Kojo Idrissa", + "Aisha Bello", + "Brayan Kai", + "Chris Achinga", + "Denny Perez", + "Felipe Quieroz", + "Marlene Mhangami", + "Monica Oyugi", + "Ngazetungue Muheue", + "Steve Yonkeu", + "BAOVOLA Marie Anna" + ] +} diff --git a/_data/leadership.yaml b/_data/leadership.yaml deleted file mode 100644 index 667d0ea..0000000 --- a/_data/leadership.yaml +++ /dev/null @@ -1,57 +0,0 @@ -Executors: - - name: Jay Miller - title: Executor - image: https://github.com/kjaymiller.png - alt: photo of Jay - - - name: Abigail Afi Gbadago - title: Executor (Africa) - image: /assets/images/afi.webp - - - name: Emmanuel Ugwu - title: Vice-Executor (Africa) - image: /assets/images/nuel.webp - - - name: Lazuich Ford - title: Executor (North America) - image: /assets/images/laz.webp - - - name: Keanya Phelps - title: Vice-Executor (North America) - image: /assets/images/keanya.webp - -Leaders: - - name: Damilola Oladele - title: Documentation Lead - - - name: Doreen Nangira - title: Code of Conduct Team Lead - - - name: Sandra Ashipala - title: Welcoming Team - -Advisors: - - Benedict Koji Amofah - - Ronald Maravanyika - - Kudzayi Bamhare - - Kojo Idrissa - - Carol Willing - - Jeff Triplett - - Dr. Kari L. Jordan - -Council: - - Dawn Wages - - Sarah Abderemane - - Abigail Mesyenrame Dogbe - - Velda Kiara - - Kojo Idrissa - - Aisha Bello - - Brayan Kai - - Chris Achinga - - Denny Perez - - Felipe Quieroz - - Marlene Mhangami - - Monica Oyugi - - Ngazetungue Muheue - - Steve Yonkeu - - BAOVOLA Marie Anna diff --git a/app.py b/app.py index 4ed0b3e..f5ccb68 100644 --- a/app.py +++ b/app.py @@ -42,6 +42,7 @@ class Index(Page): @app.page class About(Page): template = "about.html" + data = json.loads(pathlib.Path("_data/leadership.json").read_text()) @app.page