Full Page

Hana Voss

Tidal Memory

Out August 15, 2026

Tidal Memory is an album about returning to a place that no longer exists. Eleven tracks of layered vocals, processed strings, and field recordings from the Swedish coast. Recorded over two winters in a cabin outside Gothenburg. Mixed by Marta Salogni. Mastered at Calyx.

Tracklist

1. Shore, 2. Half-Light, 3. Tidal Memory, 4. Granite, 5. The Year I Left, 6. Undertow, 7. Salt, 8. Archive, 9. Vestiges, 10. Return, 11. Shore (Reprise)

Credits

Written and produced by Hana Voss, Mixed by Marta Salogni, Mastered at Calyx Studios, Strings: Norrköping Symphony (excerpt), Cover photography: Erik Lund

Listen Now

Album Release

Single-purpose album release page with tracklist, credits, and streaming links.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
artist_name string
album_title string
release_date string
description text
tracklist list<string>
credits list<string>
cover_image image
listen_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/album-release/apply
Content-Type: application/json

{
  "artist_name": "Hana Voss",
  "album_title": "Tidal Memory",
  "release_date": "Out August 15, 2026",
  "description": "Tidal Memory is an album about returning to a place that no longer exists. Eleven tracks of layered vocals, processed strings, and field recordings from the Swedish coast.\n\nRecorded over two winters in a cabin outside Gothenburg. Mixed by Marta Salogni. Mastered at Calyx.",
  "tracklist": [
    "1. Shore",
    "2. Half-Light",
    "3. Tidal Memory",
    "4. Granite",
    "5. The Year I Left",
    "6. Undertow",
    "7. Salt",
    "8. Archive",
    "9. Vestiges",
    "10. Return",
    "11. Shore (Reprise)"
  ],
  "credits": [
    "Written and produced by Hana Voss",
    "Mixed by Marta Salogni",
    "Mastered at Calyx Studios",
    "Strings: Norrköping Symphony (excerpt)",
    "Cover photography: Erik Lund"
  ],
  "cover_image": "/images/defaults/hero-art.webp",
  "listen_url": "https://example.com/listen"
}

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 "Album Release" 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: {{artist_name:string}}, {{album_title:string}}, {{release_date: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
{
  "artist_name": "string",
  "album_title": "string",
  "release_date": "string",
  "description": "text",
  "tracklist": [
    "string"
  ],
  "credits": [
    "string"
  ],
  "cover_image": "image",
  "listen_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{artist_name:string}}` → string
- `{{album_title:string}}` → string
- `{{release_date:string}}` → string
- `{{description:text}}` → text
- `{{tracklist:list<string>}}` → list<string>
- `{{credits:list<string>}}` → list<string>
- `{{cover_image:image}}` → image
- `{{listen_url:link}}` → link

Output ONLY the HTML code block. No explanation.