{% extends "base.html" %} {% import 'includes/macros.html' as macros %} {% block main_header %} {{meta.title}} {% endblock main_header %} {% block main_content %}

{{meta.title}}

Our next meetup is in Wangen im Allgäu on {{meetups[0].event_datetime}}.

Drop us an email at {{meta.email}} if you plan to join. This will help to better organize the event.

{{meta.name}} about us banner
{{meta.author}} image

About Us

{% for about_us_paragraph in about_us_paragraphs%}

{{about_us_paragraph}}

{% endfor %}

Meetups

Here is the list of upcoming meetups organized by PyBodensee.

{% for meetup in meetups%} {{macros.meetup_card(meta, meetup)}} {% endfor%}

Blog Posts

Here is the list of recently published posts by PyBodensee.

{% for post in posts%} {{macros.post_card(meta, post)}} {% endfor%}
{% endblock main_content %}