Full Page

Manchester, UK

The Furnace

The Furnace is a 300-capacity venue in a converted Victorian foundry in Manchester's Northern Quarter. We book live music six nights a week — everything from post-punk to jazz to whatever doesn't fit anywhere else. No corporate bookings. No tribute acts. Just musicians who have something to say, playing for people who want to hear it.

Upcoming

Jun 27 — Squid, Jun 29 — Nubya Garcia, Jul 2 — Dry Cleaning, Jul 5 — Black Country, New Road, Jul 8 — The Comet Is Coming

Practical Info

Doors: 7:30pm / Music: 8:30pm, Capacity: 300 standing, No re-entry after 10pm, Cash and card accepted at the bar, Wheelchair accessible (ground floor)

Concert Venue

Venue page with upcoming shows, about, and practical info.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
venue_name string
location string
about text
upcoming_shows list<string>
practical_info list<string>
email email
tickets_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/concert-venue/apply
Content-Type: application/json

{
  "venue_name": "The Furnace",
  "location": "Manchester, UK",
  "about": "The Furnace is a 300-capacity venue in a converted Victorian foundry in Manchester's Northern Quarter. We book live music six nights a week — everything from post-punk to jazz to whatever doesn't fit anywhere else.\n\nNo corporate bookings. No tribute acts. Just musicians who have something to say, playing for people who want to hear it.",
  "upcoming_shows": [
    "Jun 27 — Squid",
    "Jun 29 — Nubya Garcia",
    "Jul 2 — Dry Cleaning",
    "Jul 5 — Black Country, New Road",
    "Jul 8 — The Comet Is Coming"
  ],
  "practical_info": [
    "Doors: 7:30pm / Music: 8:30pm",
    "Capacity: 300 standing",
    "No re-entry after 10pm",
    "Cash and card accepted at the bar",
    "Wheelchair accessible (ground floor)"
  ],
  "email": "[email protected]",
  "tickets_url": "https://example.com/tickets"
}

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 "Concert Venue" 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: {{venue_name:string}}, {{location: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
{
  "venue_name": "string",
  "location": "string",
  "about": "text",
  "upcoming_shows": [
    "string"
  ],
  "practical_info": [
    "string"
  ],
  "email": "email",
  "tickets_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{venue_name:string}}` → string
- `{{location:string}}` → string
- `{{about:text}}` → text
- `{{upcoming_shows:list<string>}}` → list<string>
- `{{practical_info:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{tickets_url:link}}` → link

Output ONLY the HTML code block. No explanation.