Full Page

Slowburn

Post-punk from Glasgow. Loud when it matters.

Slowburn is a four-piece from Glasgow making music that sounds like buildings being taken apart. We've been playing since 2020, released two LPs on Upset the Rhythm, and toured the UK and Europe more times than we can remember. We play every show like it's the last one. If you've seen us live, you know.

Members

Fiona Mackay — Vocals, Guitar, Calum Reid — Guitar, Synth, Aisha Begum — Bass, Lewis Tran — Drums

Tour Dates

Jul 12 — The Windmill, London, Jul 14 — Rough Trade, Bristol, Jul 18 — YES, Manchester, Jul 20 — Mono, Glasgow, Aug 3 — Botanique, Brussels, Aug 5 — Paradiso, Amsterdam

Press

'The most exciting live band in Scotland right now' — The Quietus, 'Noise that makes you feel something' — NME, 'If you're not paying attention to Slowburn, start' — DIY Magazine

Band Page

Gritty band page with members, tour dates, and press quotes.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
band_name string
tagline string
bio text
members list<string>
tour_dates list<string>
press_quotes list<string>
booking_email email

Apply Values

POST JSON to the API endpoint:

POST /api/templates/band-page/apply
Content-Type: application/json

{
  "band_name": "Slowburn",
  "tagline": "Post-punk from Glasgow. Loud when it matters.",
  "bio": "Slowburn is a four-piece from Glasgow making music that sounds like buildings being taken apart. We've been playing since 2020, released two LPs on Upset the Rhythm, and toured the UK and Europe more times than we can remember.\n\nWe play every show like it's the last one. If you've seen us live, you know.",
  "members": [
    "Fiona Mackay — Vocals, Guitar",
    "Calum Reid — Guitar, Synth",
    "Aisha Begum — Bass",
    "Lewis Tran — Drums"
  ],
  "tour_dates": [
    "Jul 12 — The Windmill, London",
    "Jul 14 — Rough Trade, Bristol",
    "Jul 18 — YES, Manchester",
    "Jul 20 — Mono, Glasgow",
    "Aug 3 — Botanique, Brussels",
    "Aug 5 — Paradiso, Amsterdam"
  ],
  "press_quotes": [
    "'The most exciting live band in Scotland right now' — The Quietus",
    "'Noise that makes you feel something' — NME",
    "'If you're not paying attention to Slowburn, start' — DIY Magazine"
  ],
  "booking_email": "[email protected]"
}

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 "Band Page" 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: {{band_name:string}}, {{tagline:string}}, {{bio: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
{
  "band_name": "string",
  "tagline": "string",
  "bio": "text",
  "members": [
    "string"
  ],
  "tour_dates": [
    "string"
  ],
  "press_quotes": [
    "string"
  ],
  "booking_email": "email"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{band_name:string}}` → string
- `{{tagline:string}}` → string
- `{{bio:text}}` → text
- `{{members:list<string>}}` → list<string>
- `{{tour_dates:list<string>}}` → list<string>
- `{{press_quotes:list<string>}}` → list<string>
- `{{booking_email:email}}` → email

Output ONLY the HTML code block. No explanation.