Building with HugoBlox

Events & Talks

Publish conference talks, workshops, webinars, and seminars. Include dates, locations, abstracts, and link to presentation slides.

Publish your conference talks, workshops, seminars, and webinars. Events support start/end times, locations, abstracts, and automatic embedding of linked slide decks.


Quick Start

  1. Open the Ownable sidebar in VS Code.
  2. Click + (Create) next to the Events collection.
  3. Enter a title and press Enter.

Install Ownable CMS for visual content management.

hugo new content/events/my-talk/index.md
  1. Create a folder: content/events/my-talk/
  2. Add index.md with the frontmatter below.
  3. Optionally add featured.jpg for a thumbnail.

File Structure

_index.md # Event listing page
index.md # Event page
featured.jpg # Thumbnail image
index.md

Frontmatter Template

---
title: "My Conference Talk"

# Event details
event: "NeurIPS 2024"
event_url: "https://neurips.cc"
location: "Vancouver Convention Centre, Vancouver, Canada"

# Talk start and end times (ISO 8601)
date: "2024-12-10T14:00:00Z"
date_end: "2024-12-10T15:00:00Z"
all_day: false

# Abstract
abstract: >
  In this talk, we present our latest findings on scalable
  attention mechanisms for large language models.

# Summary for listing cards
summary: "Presenting our work on scalable attention at NeurIPS 2024."

# Authors / Speakers
authors:
  - jane-doe

# Tags
tags:
  - Machine Learning
  - NeurIPS
  - Attention

# Link to slides (folder name under content/slides/)
slides: "neurips-2024"

# Featured image
image:
  filename: featured.jpg
  caption: "Presenting at NeurIPS"

# Links
links:
  - name: Video Recording
    url: https://youtube.com/...
    icon: video
  - name: Paper
    url: /publication/attention-paper/
    icon: document

# Shorthand link fields
url_pdf: ""
url_slides: ""
url_video: ""
url_code: ""

# Featured
featured: true

# Draft
draft: false
---

## Talk Details

Add any additional context, extended abstract, or notes about the talk.
Include references, acknowledgments, or related work.

Linking Slides to Events

Connect your Markdown slide decks to events for automatic embedding:

  1. Create your slides at content/slides/neurips-2024/index.md

  2. Reference in your event using the slides: field:

    slides: "neurips-2024"   # Matches the folder name
  3. Result: The slides automatically embed on the event page with a fullscreen toggle button.

Viewers can preview slides inline and go fullscreen without leaving the event page.


Event Listing

The event listing page at /event/ automatically displays events sorted by date, with:

  • Upcoming events shown first
  • Past events below
  • Date/time, location, and summary displayed on cards

Date & Time

Events support precise start/end times and all-day events:

# Specific time range
date: "2024-12-10T14:00:00Z"
date_end: "2024-12-10T15:00:00Z"
all_day: false

# All-day event
date: "2024-12-10"
all_day: true

Use ISO 8601 format with timezone for precise scheduling. Times are displayed in the visitor's local timezone.


Quick Reference

FieldTypeDescription
titlestringTalk/event title (required)
eventstringConference or event name
event_urlstringLink to event website
locationstringVenue and city
datedatetimeStart date/time (ISO 8601)
date_enddatetimeEnd date/time
all_dayboolAll-day event flag
abstractstringTalk abstract
slidesstringLinked slide deck folder name
authorslistSpeaker slugs
featuredboolPin to top of listings

Was this page helpful?

From the makers of

© 2026 Lore Labs.

On this page