diff --git a/blog.py b/blog.py index 956c9d5..276f8c6 100644 --- a/blog.py +++ b/blog.py @@ -7,21 +7,19 @@ CONTENT_DIR = Path(__file__).parent / "content" / "blog" +# Canonical field order matches models/blog-post.ini with `body` moved to +# the end. Only fields declared in the model are emitted here — keeping the +# scaffold aligned with the rest of content/blog/. TEMPLATE_DE = """\ title: {title} --- pub_date: {pub_date} --- -author: {author} ---- -tags: +teaser_image: preview.jpg --- teaser_text: Kurze Zusammenfassung des Beitrags (1-2 Sätze). Wird in der Blog-Übersicht angezeigt. - ---- -teaser_image: preview.jpg --- cta: Weiterlesen --- @@ -29,8 +27,6 @@ --- highlighted: False --- -_discoverable: yes ---- body: #### Überschrift @@ -47,16 +43,11 @@ --- pub_date: {pub_date} --- -author: {author} ---- -tags: +teaser_image: preview.jpg --- teaser_text: Short summary of the post (1-2 sentences). Shown in the blog overview. - ---- -teaser_image: preview.jpg --- cta: Read more --- @@ -64,8 +55,6 @@ --- highlighted: False --- -_discoverable: yes ---- body: #### Heading @@ -110,15 +99,12 @@ def add() -> None: print(f"Error: '{pub_date}' is not a valid date (expected YYYY-MM-DD).") sys.exit(1) - author = prompt("Author name", default="PySV") - slug = f"{year}-{slugify(title)}" post_dir = CONTENT_DIR / slug print(f"\n── Summary ──") print(f" Title: {title}") print(f" Date: {pub_date}") - print(f" Author: {author}") print(f" Directory: content/blog/{slug}/") print(f" Files: contents.lr (DE), contents+en.lr (EN)\n") @@ -129,7 +115,7 @@ def add() -> None: post_dir.mkdir(parents=True, exist_ok=False) - fields = {"title": title, "pub_date": pub_date, "author": author} + fields = {"title": title, "pub_date": pub_date} (post_dir / "contents.lr").write_text(TEMPLATE_DE.format(**fields)) (post_dir / "contents+en.lr").write_text(TEMPLATE_EN.format(**fields)) diff --git a/content/blog/2017-jugendhalle/contents.lr b/content/blog/2017-jugendhalle/contents.lr index 31486e2..daa9714 100644 --- a/content/blog/2017-jugendhalle/contents.lr +++ b/content/blog/2017-jugendhalle/contents.lr @@ -2,10 +2,6 @@ title: Jugend hackt Halle – Bericht vom November 2017 --- pub_date: 2017-11-01 --- -author: Python Software Verband ---- -tags: python, JugendHackt, grants, 2017 ---- teaser_text: Während Wettbewerbe wie »Jugend musiziert« und »Jugend forscht« seit Jahrzehnten etabliert sind, finden junge Talente aus dem Bereich der Softwareentwicklung kaum einen Platz in staatlich geförderten Initiativen, obgleich das Thema in digitalisierten Gesellschaften zunehmend an Bedeutung gewinnt. diff --git a/content/blog/2017-pythoncamp/contents.lr b/content/blog/2017-pythoncamp/contents.lr index 0317e0d..96b646f 100644 --- a/content/blog/2017-pythoncamp/contents.lr +++ b/content/blog/2017-pythoncamp/contents.lr @@ -2,10 +2,6 @@ title: PythonCamp 2017 --- pub_date: 2017-05-01 --- -author: Python Software Verband ---- -tags: python, pythonCamp, grants, 2017 ---- teaser_text: Im April 2017 fand zum achten Mal das Kölner [PythonCamp](https://barcamps.eu/pycamp201704/) statt. Gleichfalls im achten Jahr unterstützte die [GFU Cyrus AG](https://www.gfu.net) die Veranstaltung indem sie Schulungsräume zur Nutzung freigab, so dass wieder ein Umfang von 75 Teilnehmern möglich wurde. Wie auch schon in den vergangenen Jahren war das PythonCamp bereits nach wenigen Tagen ausgebucht. diff --git a/content/blog/2018-geopython/contents.lr b/content/blog/2018-geopython/contents.lr index 83a0d8f..635c4f6 100644 --- a/content/blog/2018-geopython/contents.lr +++ b/content/blog/2018-geopython/contents.lr @@ -2,10 +2,6 @@ title: GeoPython 2018 --- pub_date: 2018-06-01 --- -author: Python Software Verband ---- -tags: python, geopython, grants, 2018 ---- teaser_text: zum dritten Mal in Folge die GeoPython-Konferenz, organisiert durch Prof. Martin Christen, am Institut Geomatik der Fachhochschule Nordwestschweiz in Muttenz/Basel stattgefunden --- body: diff --git a/content/blog/2018-pyladies-hh/contents+en.lr b/content/blog/2018-pyladies-hh/contents+en.lr index 6b6b7e2..edbc399 100644 --- a/content/blog/2018-pyladies-hh/contents+en.lr +++ b/content/blog/2018-pyladies-hh/contents+en.lr @@ -2,10 +2,6 @@ title: PyLadies x MicroPython @ PyCon DE 2018 --- pub_date: 2018-11-01 --- -author: Python Software Verband ---- -tags: python, pyladies, grants, pycon ---- body: ####Im Rahmen unseres Förderprogramms unterstützen wir die PyLadies bei einem Workshop auf der PyConDE um Teilnehmer*innen mit Hardware auszustatten. @@ -54,4 +50,4 @@ primarily to empower women tech community. We request non female attendees to be aware of these situation and make their presence discrete. Eg. by coming with a female plus one to ensure gender balance, avoiding to be heard more than the rest of the attendees in -discussions and question sections. \ No newline at end of file +discussions and question sections. diff --git a/content/blog/2018-pyladies-hh/contents.lr b/content/blog/2018-pyladies-hh/contents.lr index ae20b81..ddf9bb5 100644 --- a/content/blog/2018-pyladies-hh/contents.lr +++ b/content/blog/2018-pyladies-hh/contents.lr @@ -2,10 +2,6 @@ title: PyLadies x MicroPython @ PyCon DE 2018 --- pub_date: 2018-11-01 --- -author: Python Software Verband ---- -tags: python, pyladies, grants, pycon ---- teaser_text: Im Rahmen unseres Förderprogramms unterstützen wir die PyLadies bei einem Workshop auf der PyConDE um Teilnehmer*innen mit Hardware auszustatten. diff --git a/content/blog/2018-pythoncamp/contents.lr b/content/blog/2018-pythoncamp/contents.lr index 19417d0..41aea73 100644 --- a/content/blog/2018-pythoncamp/contents.lr +++ b/content/blog/2018-pythoncamp/contents.lr @@ -1,13 +1,7 @@ -model: _blog-post ---- title: PythonCamp 2018 --- pub_date: 2018-05-01 --- -author: Python Software Verband ---- -tags: python, pythonCamp, grants, 2017 ---- teaser_text: Am 7. und 8. April 2018 gabs zum neuntem Mail das Kölner PythonCamp in den Räumnen der GFU Cyrus AG. diff --git a/content/blog/2019-pycon-de-pydata-berlin/contents.lr b/content/blog/2019-pycon-de-pydata-berlin/contents.lr index 24fe78e..871e581 100644 --- a/content/blog/2019-pycon-de-pydata-berlin/contents.lr +++ b/content/blog/2019-pycon-de-pydata-berlin/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: PyCon DE & PyData Berlin 2019 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2019-10-11 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die PyCon DE & PyData Berlin 2019 war ein voller Erfolg: 1.111 Teilnehmende, ausverkauft zwei Monate im Voraus, mit 800 weiteren auf der Warteliste. --- +show_on_homepage: no +--- body: ## PyCon DE & PyData Berlin 2019 @@ -41,9 +41,3 @@ Die Konferenz wurde vom **Python Software Verband e.V.** in Zusammenarbeit mit * --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: pycon-de, pydata, konferenz, berlin, 2019 ---- -_discoverable: yes ---- -pub_date: 2019-10-11 diff --git a/content/blog/2020-barcamp/contents.lr b/content/blog/2020-barcamp/contents.lr index 3cb74ab..fdb1b58 100644 --- a/content/blog/2020-barcamp/contents.lr +++ b/content/blog/2020-barcamp/contents.lr @@ -2,12 +2,6 @@ title: Erstes Python BarCamp in Leipzig am 19. Januar 2020 --- pub_date: 2020-01-19 --- -author: Python Software Verband ---- -avatar: custom_name.jpg ---- -tags: python, barcamp, grants ---- teaser_text: Am 19. Januar 2020 findet im Leipziger Co-Workings-Space Basislager das erste Python BarCamp statt. diff --git a/content/blog/2021-grants-techkids/contents.lr b/content/blog/2021-grants-techkids/contents.lr index 7983a50..f3aebd5 100644 --- a/content/blog/2021-grants-techkids/contents.lr +++ b/content/blog/2021-grants-techkids/contents.lr @@ -2,12 +2,6 @@ title: Teckids e.V.: Hack'n'Sun 2021 --- pub_date: 2021-08-17 --- -author: Teckids ---- -avatar: avatar_1f6650.svg ---- -tags: community, kids, 2021, grants ---- teaser_text: Vom 7. bis zum 13. Juli 2021 fanden, erstmals unter dem Namen Hack'n'Sun, unsere diesjährigen Sommerfreizeiten, aufgeteilt in zwei Gruppen mit insgesamt 79 Teilnehmenden, statt. Diese konnten sich in einem Chat vor der Freizeit schon kennenlernen und erlernten in verschiedenen Workshops beim Basteln an ihren Projekten neue Fähigkeiten. diff --git a/content/blog/2021-mv/contents.lr b/content/blog/2021-mv/contents.lr index 61fd115..b709549 100644 --- a/content/blog/2021-mv/contents.lr +++ b/content/blog/2021-mv/contents.lr @@ -2,17 +2,13 @@ title: Mitgliederversammlung 2021 --- pub_date: 2021-10-17 --- -author: Python Software Verband ---- -avatar: custom_name.jpg ---- -tags: verein, members +teaser_image: preview.png --- -teaser_text: Unsere diesjährige Mitgliederversammlung findet am 13. November 2021 statt. Die Versammlung findet online statt. +teaser_text: + +Unsere diesjährige Mitgliederversammlung findet am 13. November 2021 statt. Die Versammlung findet online statt. Neben dem Geschäftsbericht steht auch die Wahl zum Vorstand an. --- -teaser_image: preview.png ---- show_on_homepage: True --- highlighted: True diff --git a/content/blog/2021-python-pizza-hh/contents+en.lr b/content/blog/2021-python-pizza-hh/contents+en.lr index fe92722..f9dfa7e 100644 --- a/content/blog/2021-python-pizza-hh/contents+en.lr +++ b/content/blog/2021-python-pizza-hh/contents+en.lr @@ -2,10 +2,6 @@ title: Python Pizza Hamburg 2021 --- pub_date: 2021-12-15 --- -author: PyLadies Germany ---- -tags: python, pyladies, PythonPizzaHH2021, PythonPizzaConf, conference ---- body: #### Why Python is our favorite Pizza topping! @@ -90,4 +86,4 @@ We would also like to thank our sponsors without which such events would just no ##### In case you missed it! Website: https://lnkd.in/dB6EknT -Youtube stream: https://lnkd.in/dS7z_7Em \ No newline at end of file +Youtube stream: https://lnkd.in/dS7z_7Em diff --git a/content/blog/2021-python-pizza-hh/contents.lr b/content/blog/2021-python-pizza-hh/contents.lr index 4969081..77e8cc1 100644 --- a/content/blog/2021-python-pizza-hh/contents.lr +++ b/content/blog/2021-python-pizza-hh/contents.lr @@ -2,10 +2,6 @@ title: Python Pizza Hamburg 2021 --- pub_date: 2021-12-15 --- -author: PyLadies Deutschland ---- -tags: python, pyladies, PythonPizzaHH2021, PythonPizzaConf, conference ---- teaser_text: Diesen Monat haben wir die dritte Hamburger Python-Pizza-Veranstaltung abgehalten! Ursprünglich als hybride Veranstaltung geplant, bei der wir hofften, Verbindungen zwischen den Teilnehmern aus der Ferne und den Teilnehmern vor Ort zu schaffen, mussten wir aufgrund der steigenden COVID-19-Zahlen in Hamburg die Veranstaltung komplett aus der Ferne durchführen. Das war zwar ein Rückschlag, hat uns aber nicht davon abgehalten, ein großartiges Community-Event zu veranstalten. diff --git a/content/blog/2022-foerderungen/contents.lr b/content/blog/2022-foerderungen/contents.lr index 78b8336..36a3196 100644 --- a/content/blog/2022-foerderungen/contents.lr +++ b/content/blog/2022-foerderungen/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: Geförderte Projekte 2022 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2022-12-31 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Überblick über die vom PySV im Jahr 2022 geförderten Projekte und Veranstaltungen. --- +show_on_homepage: no +--- body: ## Geförderte Projekte & Veranstaltungen 2022 @@ -51,9 +51,3 @@ Wir haben außerdem administrativ und/oder finanziell unterstützt: --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt. Quelle: Jahresbericht 2022/2023.* ---- -tags: förderprogramm, community, 2022 ---- -_discoverable: yes ---- -pub_date: 2022-12-31 diff --git a/content/blog/2022-grants-pydatasw/contents.lr b/content/blog/2022-grants-pydatasw/contents.lr index 73652cb..e111362 100644 --- a/content/blog/2022-grants-pydatasw/contents.lr +++ b/content/blog/2022-grants-pydatasw/contents.lr @@ -2,19 +2,13 @@ title: PyData Südwest: Big PyData BBQ 2022 --- pub_date: 2022-07-08 --- -author: PyData Südwest ---- -avatar: avatar_0c8492.svg ---- -tags: community, meetup, 2022, grants +teaser_image: MAFINEX-SCREENS-BBQ Slides.jpg --- teaser_text: PyData Südwest ist das lokale Meetup für Python & Data im Raum Heidelberg, Mannheim und Karlsruhe. Das alljährlich stattfindende "Big PyData BBQ" fand dieses Jahr in Kooperation mit PyLadies statt. --- -teaser_image: MAFINEX-SCREENS-BBQ Slides.jpg ---- show_on_homepage: True --- body: diff --git a/content/blog/2022-grants-techkids/contents.lr b/content/blog/2022-grants-techkids/contents.lr index a765464..35519ce 100644 --- a/content/blog/2022-grants-techkids/contents.lr +++ b/content/blog/2022-grants-techkids/contents.lr @@ -2,13 +2,7 @@ title: Teckids e.V.: Hack'n'Sun 2022 --- pub_date: 2022-08-17 --- -author: Teckids ---- -avatar: avatar_1f6650.svg ---- -tags: community, kids, 2022, grants ---- -teaser: Im Juni und Juli 2022 fanden wieder Hack'n'Sun Sommerfreizeiten des Techkids e.V. statt. +teaser_text: Im Juni und Juli 2022 fanden wieder Hack'n'Sun Sommerfreizeiten des Techkids e.V. statt. --- body: diff --git a/content/blog/2022-mv/contents.lr b/content/blog/2022-mv/contents.lr index f719735..bd9fecd 100644 --- a/content/blog/2022-mv/contents.lr +++ b/content/blog/2022-mv/contents.lr @@ -2,19 +2,14 @@ title: Mitgliederversammlung 2022 --- pub_date: 2022-10-19 --- -author: Python Software Verband ---- -avatar: custom_name.jpg ---- -tags: verein, members +teaser_image: preview.png --- -teaser_text: Unsere diesjährige Mitgliederversammlung findet am 12. November 2021 online statt. +teaser_text: + +Unsere diesjährige Mitgliederversammlung findet am 12. November 2021 online statt. Der Vorstand wird den Geschäftsbericht 2021 vorstellen und einen Ausblick auf 2022 geben. Vorstands-Wahlen stehen dieses Jahr keine an, da seit 2021 der Vorstand nun auf 2 Jahr gewählt wird. Die Rechnungsprüfer müssen neu bzw. wieder gewählt werden. - ---- -teaser_image: preview.png --- show_on_homepage: True --- diff --git a/content/blog/2022-pycon-de-pydata-berlin/contents.lr b/content/blog/2022-pycon-de-pydata-berlin/contents.lr index ccecf08..5f58379 100644 --- a/content/blog/2022-pycon-de-pydata-berlin/contents.lr +++ b/content/blog/2022-pycon-de-pydata-berlin/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: PyCon DE & PyData Berlin 2022 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2022-04-13 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Nach zwei pandemiebedingten Absagen kehrte die PyCon DE & PyData Berlin 2022 zurück — die erste große Python-Konferenz nach der Pandemie überhaupt. --- +show_on_homepage: no +--- body: ## PyCon DE & PyData Berlin 2022 @@ -43,9 +43,3 @@ Der PySV war 2022 auch Träger der **EuroSciPy** in Basel und unterstützte weit --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: pycon-de, pydata, konferenz, berlin, 2022 ---- -_discoverable: yes ---- -pub_date: 2022-04-13 diff --git a/content/blog/2023-beethoven-sprint/contents+en.lr b/content/blog/2023-beethoven-sprint/contents+en.lr index 38f3e94..67864f7 100644 --- a/content/blog/2023-beethoven-sprint/contents+en.lr +++ b/content/blog/2023-beethoven-sprint/contents+en.lr @@ -1,17 +1,9 @@ title: Beethoven Sprint --- -author: Python Software Verband ---- -avatar: custom_name.jpg ---- -tags: community, sprint, plone ---- -teaser: The Beethoven Sprint 2023 took place from May 15 to 19 at the offices of kitconcept GmbH in Bonn. The focus was on working on Plone 6.1 and the long-term prospect of Plone 7. ---- -_discoverable: yes ---- pub_date: 2023-06-01 --- +teaser_text: The Beethoven Sprint 2023 took place from May 15 to 19 at the offices of kitconcept GmbH in Bonn. The focus was on working on Plone 6.1 and the long-term prospect of Plone 7. +--- body: ![group_and_beethoven](./beethoven-sprint-850x532.jpg) @@ -40,5 +32,3 @@ A detailed report on the event can be found [here](https://plone.org/news-and-events/news/2023/fifth-beethoven-sprint-progress-plone-6-1-foundations-plone-7). Translated with www.DeepL.com/Translator (free version) - - diff --git a/content/blog/2023-beethoven-sprint/contents.lr b/content/blog/2023-beethoven-sprint/contents.lr index 8d5c83f..8dd3d55 100644 --- a/content/blog/2023-beethoven-sprint/contents.lr +++ b/content/blog/2023-beethoven-sprint/contents.lr @@ -1,21 +1,13 @@ title: Beethoven Sprint --- -author: Python Software Verband ---- -avatar: custom_name.jpg +pub_date: 2023-06-01 --- -tags: community, sprint, plone +teaser_image: beethoven-sprint-850x532.jpg --- teaser_text: Der Beethoven Sprint 2023 fand vom 15. bis 19. Mai in den Büros der kitconcept GmbH in Bonn statt. Dabei stand die Arbeit an Plone 6.1 im Vordergrund sowie langfristig die Aussicht auf Plone 7. --- -teaser_image: beethoven-sprint-850x532.jpg ---- show_on_homepage: True --- -_discoverable: yes ---- -pub_date: 2023-06-01 ---- body: Die Teilnehmer des fünften Beethoven-Sprints in Bonn (© kitconcept GmbH) @@ -36,5 +28,3 @@ Der Beethoven Sprint 2023 fand vom 15. bis 19. Mai in den Büros der kitconcept - Plone Distributions Ein ausführlicher Bericht über die Veranstaltung befindet sich [hier](https://plone.org/news-and-events/news/2023/fifth-beethoven-sprint-progress-plone-6-1-foundations-plone-7). - - diff --git a/content/blog/2023-djangogirls-berlin/contents+en.lr b/content/blog/2023-djangogirls-berlin/contents+en.lr index bcf34a1..2329fb6 100644 --- a/content/blog/2023-djangogirls-berlin/contents+en.lr +++ b/content/blog/2023-djangogirls-berlin/contents+en.lr @@ -1,17 +1,9 @@ title: Discovering Empowerment at Django Girls Berlin 2023 --- -author: Lisa Quatmann (berlin@djangogirls.org) ---- -avatar: custom_name.jpg ---- -tags: community, djangogirls, womenintech, python, django ---- -teaser: Discover the transformative journey of Django Girls Berlin 2023, where 75 women transformed from coding novices to empowered web developers, celebrating diversity, mentorship, and the breaking of barriers in the tech world. ---- -_discoverable: yes ---- pub_date: 2023-11-01 --- +teaser_text: Discover the transformative journey of Django Girls Berlin 2023, where 75 women transformed from coding novices to empowered web developers, celebrating diversity, mentorship, and the breaking of barriers in the tech world. +--- body: On a crisp October day, the latest Django Girls Berlin event took place as @@ -40,5 +32,3 @@ participant and the collective power of women supporting women in tech. We would like to thank the Python Software Verband for their ongoing support, and look forward to celebrating our 10th anniversary this year. - - diff --git a/content/blog/2023-djangogirls-berlin/contents.lr b/content/blog/2023-djangogirls-berlin/contents.lr index 5064fe0..087ac19 100644 --- a/content/blog/2023-djangogirls-berlin/contents.lr +++ b/content/blog/2023-djangogirls-berlin/contents.lr @@ -1,19 +1,11 @@ title: Discovering Empowerment at Django Girls Berlin 2023 --- -author: Lisa Quatmann (berlin@djangogirls.org) ---- -avatar: custom_name.jpg ---- -tags: community, djangogirls, womenintech, python, django +pub_date: 2023-11-01 --- teaser_text: Discover the transformative journey of Django Girls Berlin 2023, where 75 women transformed from coding novices to empowered web developers, celebrating diversity, mentorship, and the breaking of barriers in the tech world. --- show_on_homepage: False --- -_discoverable: yes ---- -pub_date: 2023-11-01 ---- body: An einem frischen Oktobertag fand das neueste Django Girls Berlin Event statt – eine lebendige Demonstration von @@ -38,5 +30,3 @@ und die kollektive Kraft von Frauen, die Frauen in der Technik unterstützen. Wir möchten dem Python Software Verband für ihre anhaltende Unterstützung danken und freuen uns darauf, dieses Jahr unser 10-jähriges Jubiläum zu feiern. - - diff --git a/content/blog/2023-euroscipy/contents.lr b/content/blog/2023-euroscipy/contents.lr index 9d9df85..d447ecb 100644 --- a/content/blog/2023-euroscipy/contents.lr +++ b/content/blog/2023-euroscipy/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: EuroSciPy 2023 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2023-08-18 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die EuroSciPy 2023 fand in Basel statt und brachte über 200 Teilnehmende aus Wissenschaft, Industrie und Open Source zusammen. --- +show_on_homepage: no +--- body: ## EuroSciPy 2023 — Basel, Schweiz @@ -40,9 +40,3 @@ Themenbereiche umfassten u.a.: --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: euroscipy, konferenz, basel, wissenschaft, 2023 ---- -_discoverable: yes ---- -pub_date: 2023-08-18 diff --git a/content/blog/2023-foerderungen/contents.lr b/content/blog/2023-foerderungen/contents.lr index 3657b9d..c65d0bb 100644 --- a/content/blog/2023-foerderungen/contents.lr +++ b/content/blog/2023-foerderungen/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: Geförderte Projekte 2023 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2023-12-31 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: 2023 konnte der PySV mehr als 10 Projekte der Community fördern — von Django Girls Berlin bis PyLadies-Chapters in ganz Deutschland. --- +show_on_homepage: no +--- body: ## Geförderte Projekte & Veranstaltungen 2023 @@ -53,9 +53,3 @@ Der PySV war auf fünf Veranstaltungen mit Ständen und Beiträgen präsent: --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt. Quelle: Jahresberichte 2023/2024.* ---- -tags: förderprogramm, community, pyladies, 2023 ---- -_discoverable: yes ---- -pub_date: 2023-12-31 diff --git a/content/blog/2023-mv/contents.lr b/content/blog/2023-mv/contents.lr index d3fde2b..33d48b1 100644 --- a/content/blog/2023-mv/contents.lr +++ b/content/blog/2023-mv/contents.lr @@ -2,19 +2,12 @@ title: Mitgliederversammlung 2023 --- pub_date: 2023-11-27 --- -author: Python Software Verband ---- -avatar: custom_name.jpg ---- -tags: verein, members +teaser_image: preview.png --- teaser_text: Die Mitgliederversammlung des PySV fand am 26. November 2023 statt. Der Vorstand gab den Mitgliedern ein umfangreiches Update über die Community Aktivitäten des Vereins und den Plänen für die Zukunft. - ---- -teaser_image: preview.png --- show_on_homepage: True --- diff --git a/content/blog/2023-pycon-de-pydata-berlin/contents.lr b/content/blog/2023-pycon-de-pydata-berlin/contents.lr index f043b0a..80f885b 100644 --- a/content/blog/2023-pycon-de-pydata-berlin/contents.lr +++ b/content/blog/2023-pycon-de-pydata-berlin/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: PyCon DE & PyData Berlin 2023 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2023-04-19 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Mit 1.841 Teilnehmenden war die PyCon DE & PyData Berlin 2023 die größte Python-Konferenz Europas — ein neuer Rekord. --- +show_on_homepage: no +--- body: ## PyCon DE & PyData Berlin 2023 @@ -43,9 +43,3 @@ Im selben Jahr war der PySV auch Träger von PythonCamp Rügen, PyCamp Leipzig u --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: pycon-de, pydata, konferenz, berlin, 2023 ---- -_discoverable: yes ---- -pub_date: 2023-04-19 diff --git a/content/blog/2023-python-pizza-hamburg/contents.lr b/content/blog/2023-python-pizza-hamburg/contents.lr index 0dca841..8f566f7 100644 --- a/content/blog/2023-python-pizza-hamburg/contents.lr +++ b/content/blog/2023-python-pizza-hamburg/contents.lr @@ -1,23 +1,14 @@ title: Python Pizza Hamburg 2023 --- -cta: A Delicious Blend of Tech and Community! ---- -author: PyLadies Hamburg ---- -avatar: custom_name.jpg +pub_date: 2023-11-17 --- -tags: community, pyladies +teaser_image: hh_pp__1-850x500.jpg --- teaser_text: Held at New Work SE, Strandkai (Hamburg), the event marked a delightful return to a hybrid format, melding the best of both in-person and remote conference attendance. - --- -show_on_homepage: True ---- -teaser_image: hh_pp__1-850x500.jpg ---- -_discoverable: yes +cta: A Delicious Blend of Tech and Community! --- -pub_date: 2023-11-17 +show_on_homepage: True --- body: diff --git a/content/blog/2023-pythoncamp-an-meer-und-bodden/contents.lr b/content/blog/2023-pythoncamp-an-meer-und-bodden/contents.lr index d15d3aa..c1259ac 100644 --- a/content/blog/2023-pythoncamp-an-meer-und-bodden/contents.lr +++ b/content/blog/2023-pythoncamp-an-meer-und-bodden/contents.lr @@ -1,10 +1,6 @@ title: PythonCamp an Meer und Bodden --- -author: Python Software Verband ---- -avatar: custom_name.jpg ---- -show_on_homepage: True +pub_date: 2023-08-08 --- teaser_image: projectbay-850x196.jpg --- @@ -12,6 +8,8 @@ teaser_text: Direkt ein zweifaches Novum war das PythonCamp auf Rügen: nach Corona wieder ein BarCamp als "in person"-Veranstaltung und zudem erstmalig im Nordosten Deutschlands. --- +show_on_homepage: True +--- body: Der Veranstaltungsort: Project Bay Workation (Gebäude links) in Lietzow auf Rügen (© Toni Gurski, Project Bay). @@ -59,13 +57,3 @@ Der PySV dankt den folgenden Sponsoren für die Unterstützung des PythonCamp R [![flying-circus](./flying-circus.png)](https://flyingcircus.io) [![com-lounge](./com-lounge.jpg)](https://comlounge.net) - ---- -tags: community, pythoncamp, barcamp, rügen ---- -teaser: Direkt ein zweifaches Novum war das PythonCamp auf Rügen: nach Corona wieder ein BarCamp als "in person"-Veranstaltung und zudem erstmalig im Nordosten Deutschlands. ---- -_discoverable: yes ---- -pub_date: 2023-08-08 ---- diff --git a/content/blog/2024-euroscipy/contents.lr b/content/blog/2024-euroscipy/contents.lr index 6c1610c..16d92ba 100644 --- a/content/blog/2024-euroscipy/contents.lr +++ b/content/blog/2024-euroscipy/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: EuroSciPy 2024 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2024-08-30 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die EuroSciPy 2024 fand erstmals in Stettin, Polen, statt — mit einem besonderen Fokus auf Maintainer wissenschaftlicher Python-Bibliotheken. --- +show_on_homepage: no +--- body: ## EuroSciPy 2024 — Stettin, Polen @@ -39,10 +39,3 @@ Im Rahmen des Diversity-Programms konnten **7 Teilnehmende** mit Reisekosten und --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: euroscipy, konferenz, stettin, polen, wissenschaft, 2024 ---- -_discoverable: yes ---- -pub_date: 2024-08-30 ---- \ No newline at end of file diff --git a/content/blog/2024-foerderungen/contents.lr b/content/blog/2024-foerderungen/contents.lr index 36197f2..b0baedc 100644 --- a/content/blog/2024-foerderungen/contents.lr +++ b/content/blog/2024-foerderungen/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: Geförderte Projekte 2024 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2024-12-31 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: 2024 war das aktivste Jahr des PySV: Sechs Trägerschaften, umfangreiche Förderungen und ein starkes Diversity-Programm mit über 56 geförderten Teilnehmenden. --- +show_on_homepage: no +--- body: ## Geförderte Projekte & Veranstaltungen 2024 @@ -76,10 +76,3 @@ Der PySV war auf sieben Veranstaltungen präsent: --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt. Quelle: Jahresbericht 2024/2025.* ---- -tags: förderprogramm, community, pyladies, diversity, 2024 ---- -_discoverable: yes ---- -pub_date: 2024-12-31 ---- \ No newline at end of file diff --git a/content/blog/2024-pycon-de-pydata-berlin/contents.lr b/content/blog/2024-pycon-de-pydata-berlin/contents.lr index f0a7295..9c23fa5 100644 --- a/content/blog/2024-pycon-de-pydata-berlin/contents.lr +++ b/content/blog/2024-pycon-de-pydata-berlin/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: PyCon DE & PyData Berlin 2024 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2024-04-24 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die PyCon DE & PyData Berlin 2024 bestätigte ihren Status als größte Python-Konferenz Europas: 1.869 Teilnehmende, sechs Wochen vor der Konferenz ausverkauft. --- +show_on_homepage: no +--- body: ## PyCon DE & PyData Berlin 2024 @@ -44,10 +44,3 @@ Fotos: [PyCon DE & PyData Berlin 2024 Fotos](https://bit.ly/pyconde-pydata-24-fo --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: pycon-de, pydata, konferenz, berlin, 2024 ---- -_discoverable: yes ---- -pub_date: 2024-04-24 ---- \ No newline at end of file diff --git a/content/blog/2025-euroscipy/contents.lr b/content/blog/2025-euroscipy/contents.lr index 3019c3e..c799539 100644 --- a/content/blog/2025-euroscipy/contents.lr +++ b/content/blog/2025-euroscipy/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: EuroSciPy 2025 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2025-08-22 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die EuroSciPy 2025 fand an der AGH Universität in Krakau statt — mit über 130 Teilnehmenden und einem starken Fokus auf wissenschaftliches Python. --- +show_on_homepage: no +--- body: ## EuroSciPy 2025 — Krakau, Polen @@ -42,10 +42,3 @@ Im Rahmen des Diversity-Programms konnten **7 Teilnehmende** mit Reisekosten und --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: euroscipy, konferenz, krakau, polen, wissenschaft, 2025 ---- -_discoverable: yes ---- -pub_date: 2025-08-22 ---- \ No newline at end of file diff --git a/content/blog/2025-foerderungen/contents.lr b/content/blog/2025-foerderungen/contents.lr index 0cacce1..5528b9e 100644 --- a/content/blog/2025-foerderungen/contents.lr +++ b/content/blog/2025-foerderungen/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: Geförderte Projekte 2025 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2025-12-31 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: 2025 hat der PySV die Community mit ca. 35.000 € gefördert — von Konferenzen und Meetups bis hin zu studentischen Tagungen und dem Erhalt des Barcamp-Tools Camper. --- +show_on_homepage: no +--- body: ## Geförderte Projekte & Veranstaltungen 2025 @@ -73,10 +73,3 @@ Der PySV sichert den Betrieb des Open-Source Barcamp-Tools **Camper** finanziell --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt. Quelle: Jahresbericht 2025.* ---- -tags: förderprogramm, community, pyladies, diversity, camper, 2025 ---- -_discoverable: yes ---- -pub_date: 2025-12-31 ---- \ No newline at end of file diff --git a/content/blog/2025-pycon-de-pydata/contents.lr b/content/blog/2025-pycon-de-pydata/contents.lr index 7f87f3d..6fae61f 100644 --- a/content/blog/2025-pycon-de-pydata/contents.lr +++ b/content/blog/2025-pycon-de-pydata/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: PyCon DE & PyData 2025 --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2025-04-25 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Mit 2.079 Teilnehmenden (+9%) stellte die PyCon DE & PyData 2025 in Darmstadt einen neuen Rekord auf — erstmals außerhalb Berlins. --- +show_on_homepage: no +--- body: ## PyCon DE & PyData 2025 @@ -48,10 +48,3 @@ Fotos: [PyCon DE & PyData 2025 Fotos](https://www.picdrop.com/marvinfuchsfotogra --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: pycon-de, pydata, konferenz, darmstadt, 2025 ---- -_discoverable: yes ---- -pub_date: 2025-04-25 ---- \ No newline at end of file diff --git a/content/blog/2026-euroscipy/contents.lr b/content/blog/2026-euroscipy/contents.lr index c649a5a..f2ad9eb 100644 --- a/content/blog/2026-euroscipy/contents.lr +++ b/content/blog/2026-euroscipy/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: EuroSciPy 2026 — Ankündigung --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2026-03-07 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die EuroSciPy 2026 findet vom 18. bis 23. Juli an der AGH Universität in Krakau statt — die europäische Konferenz für wissenschaftliches Python. --- +show_on_homepage: no +--- body: ## EuroSciPy 2026 — Ankündigung @@ -47,10 +47,3 @@ Mehr Informationen: [euroscipy.org](https://euroscipy.org) --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: euroscipy, konferenz, krakau, polen, wissenschaft, 2026, ankündigung ---- -_discoverable: yes ---- -pub_date: 2026-03-07 ---- \ No newline at end of file diff --git a/content/blog/2026-pycon-de-pydata/contents.lr b/content/blog/2026-pycon-de-pydata/contents.lr index 27c5dc5..f942f78 100644 --- a/content/blog/2026-pycon-de-pydata/contents.lr +++ b/content/blog/2026-pycon-de-pydata/contents.lr @@ -1,8 +1,6 @@ title: Entwurf: PyCon DE & PyData 2026 — Ankündigung --- -author: Python Software Verband ---- -show_on_homepage: no +pub_date: 2026-03-07 --- teaser_image: --- @@ -10,6 +8,8 @@ teaser_text: Die PyCon DE & PyData 2026 findet vom 14. bis 17. April im darmstadtium in Darmstadt statt — Deutschlands größte Python-, Data- und AI-Konferenz. --- +show_on_homepage: no +--- body: ## PyCon DE & PyData 2026 @@ -46,10 +46,3 @@ Organisiert vom **Python Software Verband e.V.** in Zusammenarbeit mit **NumFOCU --- *Dieser Beitrag ist ein Entwurf und wird noch ergänzt.* ---- -tags: pycon-de, pydata, konferenz, darmstadt, 2026, ankündigung ---- -_discoverable: yes ---- -pub_date: 2026-03-07 ----