diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..caecf1a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "languageTool.enabled": true +} diff --git a/content/contributors.md b/content/contributors.md index 46626b9..84d97d4 100644 --- a/content/contributors.md +++ b/content/contributors.md @@ -5,6 +5,8 @@ draft: false hidden: true --- +{{< map geoJson="data/geojsonContributors.json">}} + ## Lumbung members - **The Question of Funding** - Adele Jarrar diff --git a/data/geojsonContributors.json b/data/geojsonContributors.json new file mode 100644 index 0000000..eda46a2 --- /dev/null +++ b/data/geojsonContributors.json @@ -0,0 +1,105 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-163.84239965043153, -35.395420121207046] + }, + "properties": { + "groupName": "The Question of Funding", + "listOfNames": [ + "Adele Jarrar", + "Amany Khalifa", + "Dena Matter", + "Fayrouz Sharqawi", + "Martin Heller", + "Mohammad Hawajri", + "Mohammad Abu Sal", + "Noor Abed", + "Raed Issa", + "Raoof Alajouri", + "Rayya Badran", + "Siwar Kraitm", + "Yazan Khalili" + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [44.33431006730271, -50.20912785456733] + }, + "properties": { + "groupName": "The Question of Funding", + "listOfNames": [ + "Adele Jarrar", + "Amany Khalifa", + "Dena Matter", + "Fayrouz Sharqawi", + "Martin Heller", + "Mohammad Hawajri", + "Mohammad Abu Sal", + "Noor Abed", + "Raed Issa", + "Raoof Alajouri", + "Rayya Badran", + "Siwar Kraitm", + "Yazan Khalili" + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [156.98134366371633, -20.842390202069744] + }, + "properties": { + "groupName": "The Question of Funding", + "listOfNames": [ + "Adele Jarrar", + "Amany Khalifa", + "Dena Matter", + "Fayrouz Sharqawi", + "Martin Heller", + "Mohammad Hawajri", + "Mohammad Abu Sal", + "Noor Abed", + "Raed Issa", + "Raoof Alajouri", + "Rayya Badran", + "Siwar Kraitm", + "Yazan Khalili" + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-174.13057315088798, -25.3268003637054] + }, + "properties": { + "groupName": "The Question of Funding", + "listOfNames": [ + "Adele Jarrar", + "Amany Khalifa", + "Dena Matter", + "Fayrouz Sharqawi", + "Martin Heller", + "Mohammad Hawajri", + "Mohammad Abu Sal", + "Noor Abed", + "Raed Issa", + "Raoof Alajouri", + "Rayya Badran", + "Siwar Kraitm", + "Yazan Khalili" + ] + } + } + ] +} diff --git a/themes/lumbung-theme/layouts/shortcodes/map.html b/themes/lumbung-theme/layouts/shortcodes/map.html new file mode 100644 index 0000000..2bb6c8c --- /dev/null +++ b/themes/lumbung-theme/layouts/shortcodes/map.html @@ -0,0 +1,82 @@ +{{ with .Get "geoJson" }} +{{ $geoJson := . }} +{{ $data := getJSON $geoJson }} +
+ + + + + + +
+ + + + + +
+{{ end }} \ No newline at end of file