You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains the source code and content for datatalks.club, a Jekyll-based community website for data science, machine learning, AI, and data engineering practitioners.
What this repository is
Static website built with Jekyll
Content-first structure: markdown, data files, and reusable templates
Main entities are modeled as Jekyll collections (_posts, _podcast, _books, _people, etc.)
Navigation, events, announcements, and sponsors are managed via YAML files in _data
Main pages on the website
URL
Source file
What it means
How it works
/
index.md
Main landing page for the community
Uses Liquid loops to aggregate data from multiple sources: upcoming events (_data/events.yaml), latest podcast episodes (_podcast), latest posts (_posts), sponsors (_data/sponsors.yaml), and active books (_books).
/articles.html
articles.md
Full article index
Iterates over site.posts and links to each article with author references from _people.
/podcast.html
podcast.md
Podcast hub page
Lists all episodes by season from _podcast; each episode gets its own detail page via collection permalink rules.
/books.html
books.md
"Book of the Week" program
Splits books into upcoming vs archive using date filters (book.end > site.time and book.end < site.time).
/events.html
events.md
Public events calendar page
Reads _data/events.yaml and divides events into upcoming and past based on event timestamp relative to site.time.
/people.html
people.md
Community people directory
Renders all person profiles from _people, each with an auto-generated profile URL.
/slack.html
slack.md
Slack onboarding page
Uses subscribe.html include for invite flow and documents key channels and participation guidelines.
/support.html
support.md
Community support and sponsorship page
Static content page for funding model, sponsor principles, and contact details.
/tools.html
tools.md
Open-source spotlight page
Iterates through _tools collection entries (tool links, demos, maintainers).