Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.55 KB

events.md

File metadata and controls

57 lines (43 loc) · 1.55 KB
title description image layout
Events
DataTalks.Club – the place to talk about data
images/cover.jpg
page

Events

We host multiple types of events:

  • Webinars – events on Tuesday, with slides, mostly technical
  • Live podcasts – events on Friday, a discussion without slides, the recording is published as a podcast
  • Conference – bigger events with multipe talks, both webinar-type talks and podcast-type talks

📅 Pro tip: you can also subscribe to our Google calendar{:target="_blank"} to get notified about all our events (subscribing works from desktop only).

{% assign upcoming = site.data.events | where_exp: "event", "event.draft != true" | where_exp: "event", "event.time > site.time" | sort: 'time' %}

{% if upcoming %}

Upcoming events

    {% for event in upcoming %}
  • {% include event.html event=event speakers=true %}
  • {% endfor %}
{% endif %}

{% assign past = site.data.events | where_exp: "event", "event.draft != true" | where_exp: "event", "event.time <= site.time" | sort: 'time' | reverse %}

{% if past %}

Past events

    {% for event in past %}
  • {% include event.html event=event speakers=true %}
  • {% endfor %}
{% endif %}