Full Page

Institute of Contemporary Arts — London

Threshold Lectures

Threshold Lectures is a public programme at the ICA exploring ideas at the boundary of disciplines. Each talk pairs two speakers from unrelated fields — a physicist and a choreographer, an economist and a poet — and asks them to find common ground in 40 minutes. Free admission. No recording. Doors close at start time.

Upcoming

Jul 10 — 'Entropy and Editing' — Dr. Priya Sharma (Physics) & Zadie Smith (Literature), Jul 24 — 'Markets and Muscles' — Prof. Daron Acemoglu (Economics) & Wayne McGregor (Dance), Aug 7 — 'Code and Clay' — Karla Pollitt (Ceramics) & Simon Peyton Jones (Computer Science)

Past Speakers

Brian Eno & Carlo Rovelli, Chimamanda Ngozi Adichie & Demis Hassabis, Ai Weiwei & Kate Crawford, Olafur Eliasson & Cédric Villani

Lecture Series

Public lecture series page with upcoming talks, past speakers, and RSVP.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
series_name string
institution string
about text
upcoming list<string>
past_speakers list<string>
email email
rsvp_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/lecture-series/apply
Content-Type: application/json

{
  "series_name": "Threshold Lectures",
  "institution": "Institute of Contemporary Arts — London",
  "about": "Threshold Lectures is a public programme at the ICA exploring ideas at the boundary of disciplines. Each talk pairs two speakers from unrelated fields — a physicist and a choreographer, an economist and a poet — and asks them to find common ground in 40 minutes.\n\nFree admission. No recording. Doors close at start time.",
  "upcoming": [
    "Jul 10 — 'Entropy and Editing' — Dr. Priya Sharma (Physics) & Zadie Smith (Literature)",
    "Jul 24 — 'Markets and Muscles' — Prof. Daron Acemoglu (Economics) & Wayne McGregor (Dance)",
    "Aug 7 — 'Code and Clay' — Karla Pollitt (Ceramics) & Simon Peyton Jones (Computer Science)"
  ],
  "past_speakers": [
    "Brian Eno & Carlo Rovelli",
    "Chimamanda Ngozi Adichie & Demis Hassabis",
    "Ai Weiwei & Kate Crawford",
    "Olafur Eliasson & Cédric Villani"
  ],
  "email": "[email protected]",
  "rsvp_url": "https://example.com/rsvp"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Lecture Series" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{series_name:string}}, {{institution:string}}, {{about:text}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "series_name": "string",
  "institution": "string",
  "about": "text",
  "upcoming": [
    "string"
  ],
  "past_speakers": [
    "string"
  ],
  "email": "email",
  "rsvp_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{series_name:string}}` → string
- `{{institution:string}}` → string
- `{{about:text}}` → text
- `{{upcoming:list<string>}}` → list<string>
- `{{past_speakers:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{rsvp_url:link}}` → link

Output ONLY the HTML code block. No explanation.