Full Page

Chamber Choir

Tenebrae Voices

Tenebrae Voices is a chamber choir of twenty singers specializing in Renaissance polyphony and contemporary choral music. Based in Cambridge, we perform in churches, galleries, and unconventional spaces across the UK and Europe. Founded in 2018 by conductor Ingrid Paulsen, the ensemble has recorded three albums for Hyperion Records and been featured on BBC Radio 3.

Repertoire

Tallis — Spem in Alium (40-part motet), Pärt — Da Pacem Domine, Caroline Shaw — Partita for 8 Voices, Byrd — Mass for Five Voices, Eriks Esenvalds — Stars

Upcoming Performances

Jul 15 — King's College Chapel, Cambridge, Jul 22 — Union Chapel, London, Aug 8 — Edinburgh International Festival, Sep 12 — Muziekgebouw, Amsterdam

Choir & Ensemble

Warm choral ensemble page with repertoire, performance schedule, and audition info.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
ensemble_name string
about text
repertoire list<string>
performances list<string>
email email
audition_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/choir-ensemble/apply
Content-Type: application/json

{
  "ensemble_name": "Tenebrae Voices",
  "about": "Tenebrae Voices is a chamber choir of twenty singers specializing in Renaissance polyphony and contemporary choral music. Based in Cambridge, we perform in churches, galleries, and unconventional spaces across the UK and Europe.\n\nFounded in 2018 by conductor Ingrid Paulsen, the ensemble has recorded three albums for Hyperion Records and been featured on BBC Radio 3.",
  "repertoire": [
    "Tallis — Spem in Alium (40-part motet)",
    "Pärt — Da Pacem Domine",
    "Caroline Shaw — Partita for 8 Voices",
    "Byrd — Mass for Five Voices",
    "Eriks Esenvalds — Stars"
  ],
  "performances": [
    "Jul 15 — King's College Chapel, Cambridge",
    "Jul 22 — Union Chapel, London",
    "Aug 8 — Edinburgh International Festival",
    "Sep 12 — Muziekgebouw, Amsterdam"
  ],
  "email": "[email protected]",
  "audition_url": "https://example.com/auditions"
}

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 "Choir & Ensemble" 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: {{ensemble_name:string}}, {{about:text}}, {{repertoire:list<string>}}
- 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
{
  "ensemble_name": "string",
  "about": "text",
  "repertoire": [
    "string"
  ],
  "performances": [
    "string"
  ],
  "email": "email",
  "audition_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{ensemble_name:string}}` → string
- `{{about:text}}` → text
- `{{repertoire:list<string>}}` → list<string>
- `{{performances:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{audition_url:link}}` → link

Output ONLY the HTML code block. No explanation.