Collections
Podcast
Podcast episode pages with YouTube embed, show notes, transcript, and references — served at /podcast/[slug].
Podcast entries create full episode pages that embed the YouTube recording, display structured show notes with timestamps, and include a full transcript for accessibility and SEO. The transcript format — individual speaker segments — is also consumed by AI assistants for citation.
Files live in content/podcast/ and are named s[season]-e[episode]-[short-title].md.
Frontmatter Fields
| Field | Type | Required | Notes |
|---|---|---|---|
title | string | Yes | Max 200 characters. Episode title as it appears in listings. |
description | string | Yes | Max 500 characters. Episode summary shown in listings and meta description. |
season | number | Yes | Season number (integer). |
episode | number | Yes | Episode number within the season (integer). |
recordingDate | date | Yes | Date the episode was recorded. |
host | string or string[] | Yes | Host name(s) as plain strings (not slugs). |
guest | string or string[] | No | Guest name(s) as plain strings. |
duration | string | Yes | Episode length in HH:MM:SS format, e.g. '00:52:14'. |
youtubeId | string | Yes | The YouTube video ID (the v= parameter), e.g. 'dQw4w9WgXcQ'. |
tags | string[] | No | Topic tags. |
industries | string[] | No | Industry verticals. |
featured | boolean | No | Pin to featured section. Default false. |
draft | boolean | No | true hides from public listings. Default false. |
externalLinks | object[] | No | Links to external platforms: { label, url, icon? }. |
additionalLinks | object[] | No | Secondary links: { label, url }. |
showNotes | object[] | No | Timestamped chapter markers: { timestamp?, title, description? }. |
transcript | object[] | No | Full transcript: { speaker, timestamp?, text }. |
references | object[] | No | Papers, books, tools mentioned: { title, url, description?, type }. Reference type options: 'article', 'book', 'paper', 'tool', 'video', 'podcast', 'other'. |
Template
---
title: ''
description: ''
season: 1
episode: 1
recordingDate: 2026-01-01
host: 'Host Name'
guest: 'Guest Name'
duration: '00:00:00'
youtubeId: ''
tags: []
industries: []
featured: false
draft: true
externalLinks:
- label: 'Apple Podcasts'
url: ''
icon: 'apple'
- label: 'Spotify'
url: ''
icon: 'spotify'
showNotes:
- timestamp: '00:00'
title: 'Introduction'
description: ''
- timestamp: '00:00'
title: 'Topic heading'
description: ''
transcript:
- speaker: 'Host Name'
timestamp: '00:00:00'
text: ''
- speaker: 'Guest Name'
timestamp: '00:00:30'
text: ''
references:
- title: ''
url: ''
type: article
---
Optional episode introduction or additional context not covered in the description.
Complete Sample
---
title: 'The Board Room Blind Spot: Why Directors Miss the Signals That Matter'
description: 'Dr. Priya Nair joins the show to dissect why corporate boards systematically miss early warning signs — and what governance reforms actually work at the board level.'
season: 2
episode: 8
recordingDate: 2026-03-04
host: 'Mithun Sridharan'
guest: 'Dr. Priya Nair'
duration: '01:04:38'
youtubeId: 'example_video_id'
tags:
- Corporate Governance
- Board Dynamics
- Risk Management
- Leadership
industries:
- Financial Services
- Banking
featured: false
draft: false
externalLinks:
- label: 'Apple Podcasts'
url: 'https://podcasts.apple.com/show/linkpress/episode/s2e8'
icon: 'apple'
- label: 'Spotify'
url: 'https://open.spotify.com/episode/example'
icon: 'spotify'
showNotes:
- timestamp: '00:00'
title: 'Introduction'
description: 'Priya's background and what drew her from consulting to governance research.'
- timestamp: '08:42'
title: 'The information paradox'
description: 'Why boards receive too much data and too little signal — and why the distinction matters.'
- timestamp: '21:15'
title: 'The Wirecard case'
description: 'A forensic look at what the supervisory board saw, what it ignored, and why.'
- timestamp: '34:50'
title: 'Structural reforms that work'
description: 'Lead independent directors, board-only sessions, and the NED information protocol.'
- timestamp: '51:20'
title: 'The question boards should ask but rarely do'
description: 'The single governance question that separates functional from ceremonial boards.'
- timestamp: '60:00'
title: 'Closing and resources'
transcript:
- speaker: 'Mithun Sridharan'
timestamp: '00:00:12'
text: 'Welcome back to the LinkPress podcast. I'm joined today by Dr. Priya Nair, a former strategy partner at Oliver Wyman and one of the sharper thinkers on corporate governance I've come across. Priya, thanks for making the time.'
- speaker: 'Dr. Priya Nair'
timestamp: '00:00:28'
text: 'Happy to be here. Governance is one of those topics that sounds dry until something goes badly wrong, and then everyone wants to understand it very quickly.'
- speaker: 'Mithun Sridharan'
timestamp: '00:00:38'
text: 'That's the perfect segue. I want to start with what I'm calling the board room blind spot — this pattern where boards of well-governed companies miss early warning signals that, in hindsight, seem obvious. What's driving that?'
- speaker: 'Dr. Priya Nair'
timestamp: '00:00:55'
text: "There are two forces at work. The first is what I call the information paradox: boards receive enormous volumes of management reporting — hundreds of pages of board packs — and that volume itself becomes a shield. When you're given 300 pages, you can't possibly read it all, so you read the executive summary and the dashboards. And the executive summary is written by the people whose performance you're supposed to be evaluating. The second force is social dynamics. Boards are cohesive groups. There are implicit norms about the questions you ask and the ones you don't. A non-executive who consistently raises uncomfortable questions finds themselves quietly excluded from the inner circle."
references:
- title: 'Boards at their Best — McKinsey Quarterly'
url: 'https://www.mckinsey.com/capabilities/strategy-and-corporate-finance/our-insights/boards-at-their-best'
description: 'Structural practices that distinguish high-performing boards.'
type: article
- title: 'The Governance of Risk — Financial Stability Board'
url: 'https://www.fsb.org/governance-of-risk'
type: paper
- title: 'Barbarians at the Gate — Bryan Burrough & John Helyar'
url: 'https://www.amazon.com/Barbarians-Gate-Fall-RJR-Nabisco/dp/0061655554'
description: 'The definitive account of board dynamics under acquisition pressure.'
type: book
---