Publishing guide

Submit a Recap

The publishing flow is intentionally simple:

  1. Copy templates/meetup-post-template.md.
  2. Save it as _posts/YYYY-MM-DD-your-meetup-slug.md.
  3. Fill in the title, date, author, summary, and meetup details.
  4. Open a pull request.
  5. Once the PR is merged, GitHub Pages publishes the post automatically.

Required file naming

Use this format exactly:

_posts/2026-07-25-july-meetup.md

Front matter to keep

---
layout: post
title: "Month YYYY Meetup"
date: 2026-07-25 09:30:00 +0530
author: "Your Name"
summary: "A short 1-2 sentence recap that will show up on the home page and blog index."
location: "Venue, Bengaluru"
event_url: "https://www.meetup.com/pytorch-bengaluru/"
---

What to include in the post body

  • A short intro about the meetup
  • Talk titles and speakers
  • Highlights, demos, or major takeaways
  • Venue and volunteer thanks
  • Links to slides, photos, or recordings if available

Also updating the next event?

If the next meetup changed, edit _data/upcoming_meetups.yml in the same PR so the home page and upcoming meetup page stay current.

For the full contributor workflow, see CONTRIBUTING.md.