Marketing and catalogue website for Neon Sprawl Records — an independent label championing up-and-coming artists.
Live site: https://neonsprawlrecords.com
This is a static website (plain HTML, CSS and JavaScript) hosted via GitHub Pages. There is no build step — the HTML files in the repository root are served as-is.
| Path | Description |
|---|---|
index.html |
Homepage |
artists.html, releases.html, events.html, news.html, podcasts.html, store.html |
Section listing pages |
about.html, pricing.html, contacts.html, privacy.html |
Static info pages |
signin.html, signup.html, forgot.html, profile.html, cart.html |
Account / commerce pages (front-end only) |
<artist>.html (e.g. chainzchief.html, soraiamoon.html) |
Individual artist pages |
<release>.html (e.g. cryptokings.html, timelessglow.html) |
Individual release / track pages |
artist.html, release.html, article.html, event.html, product.html |
Generic detail-page templates |
css/ |
Stylesheets. main.css is compiled from main.styl (Stylus) |
js/ |
JavaScript (jQuery, carousels, audio player, etc.) |
img/, icon/, fonts/, music/ |
Static assets |
CNAME |
Custom domain for GitHub Pages |
img/logo.png— primary logo (transparent background, sized for the dark theme)icon/favicon-32x32.png,icon/apple-touch-icon.png— favicons derived from the logo mark
css/main.css is generated from css/main.styl. If you change styles, edit the
.styl source and recompile with Stylus:
stylus -c css/main.stylBoth files are currently kept in sync manually for small changes.
Because the site is fully static, you can preview it with any static file server, e.g.:
python3 -m http.server 8000Then open http://localhost:8000.