tests: add sample testing site
42
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
name: Test workflow
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/**'
|
||||
- 'sample/**'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths-ignore:
|
||||
- '.github/**'
|
||||
- 'sample/**'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
path: sample/themes/
|
||||
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: '0.110.0'
|
||||
|
||||
- name: Run hugo build
|
||||
run: |
|
||||
hugo
|
||||
with:
|
||||
working-directory: samples
|
||||
|
||||
|
51
sample/content/disc1.md
Normal file
@ -0,0 +1,51 @@
|
||||
---
|
||||
# Mandatory parts :
|
||||
title: "Disc1"
|
||||
date: 2023-08-21T19:10:29+02:00
|
||||
draft: false
|
||||
|
||||
# Optional parts that you still should fill in order to sort your collection
|
||||
|
||||
## Label : name of the label that published the record
|
||||
label: Record's Label
|
||||
|
||||
## The artist's name
|
||||
artist: Record's Band
|
||||
|
||||
## The genres this record is classified into
|
||||
genres:
|
||||
- To sort
|
||||
- Genre 2
|
||||
- Genre 3
|
||||
|
||||
## Cover image : will be displayed in the album list and top page.
|
||||
## Display a default one unless you change this value.
|
||||
## Fill this value with the path of the picture located in the static folder
|
||||
cover: vintage-vinyl-record.jpg
|
||||
|
||||
# More optional details you can use for your collection.
|
||||
|
||||
## A quick description of your record. Markdown is supported
|
||||
# description: |
|
||||
# This is a great album.
|
||||
|
||||
## Disc format : 45rpm, 33rpm, 78rpm or size if you prefer.
|
||||
format: 33rpm
|
||||
|
||||
## How many discs are there in this album ?
|
||||
number_of_discs: 1
|
||||
|
||||
## Any supplementary pictures you want to display.
|
||||
## These pictures should be in the site asset folder : <your hugo site>/static
|
||||
## If you put them into a sub-folder, don't forget it in the path !
|
||||
# pictures:
|
||||
# - this-album/pict.jpg
|
||||
|
||||
## The publish year
|
||||
year: 1990
|
||||
|
||||
## What is its condition, new ? used ? bad ?
|
||||
condition: Vintage
|
||||
|
||||
## Below the metadata block, you can write some content such as a review or anything else you want. It'll be displayed in the album page.
|
||||
---
|
50
sample/content/disc2.md
Normal file
@ -0,0 +1,50 @@
|
||||
---
|
||||
# Mandatory parts :
|
||||
title: "Disc2"
|
||||
date: 2023-08-21T19:10:31+02:00
|
||||
draft: false
|
||||
|
||||
# Optional parts that you still should fill in order to sort your collection
|
||||
|
||||
## Label : name of the label that published the record
|
||||
label: Record's Label 2
|
||||
|
||||
## The artist's name
|
||||
artist: Record's Band 2
|
||||
|
||||
## The genres this record is classified into
|
||||
genres:
|
||||
- To sort
|
||||
- Genre 45
|
||||
|
||||
## Cover image : will be displayed in the album list and top page.
|
||||
## Display a default one unless you change this value.
|
||||
## Fill this value with the path of the picture located in the static folder
|
||||
cover: vinyl-record-isolated.jpg
|
||||
|
||||
# More optional details you can use for your collection.
|
||||
|
||||
## A quick description of your record. Markdown is supported
|
||||
# description: |
|
||||
# This is a great album.
|
||||
|
||||
## Disc format : 45rpm, 33rpm, 78rpm or size if you prefer.
|
||||
# format: 33rpm
|
||||
|
||||
## How many discs are there in this album ?
|
||||
# number_of_discs: 1
|
||||
|
||||
## Any supplementary pictures you want to display.
|
||||
## These pictures should be in the site asset folder : <your hugo site>/static
|
||||
## If you put them into a sub-folder, don't forget it in the path !
|
||||
# pictures:
|
||||
# - this-album/pict.jpg
|
||||
|
||||
## The publish year
|
||||
year: 1990
|
||||
|
||||
## What is its condition, new ? used ? bad ?
|
||||
# condition:
|
||||
|
||||
## Below the metadata block, you can write some content such as a review or anything else you want. It'll be displayed in the album page.
|
||||
---
|
49
sample/content/disc3.md
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
# Mandatory parts :
|
||||
title: "Disc3"
|
||||
date: 2023-08-21T19:10:33+02:00
|
||||
draft: false
|
||||
|
||||
# Optional parts that you still should fill in order to sort your collection
|
||||
|
||||
## Label : name of the label that published the record
|
||||
label: Record's Label 3
|
||||
|
||||
## The artist's name
|
||||
artist: Record's Band
|
||||
|
||||
## The genres this record is classified into
|
||||
genres:
|
||||
- To sort
|
||||
|
||||
## Cover image : will be displayed in the album list and top page.
|
||||
## Display a default one unless you change this value.
|
||||
## Fill this value with the path of the picture located in the static folder
|
||||
cover: vinyl-record.jpg
|
||||
|
||||
# More optional details you can use for your collection.
|
||||
|
||||
## A quick description of your record. Markdown is supported
|
||||
# description: |
|
||||
# This is a great album.
|
||||
|
||||
## Disc format : 45rpm, 33rpm, 78rpm or size if you prefer.
|
||||
# format: 33rpm
|
||||
|
||||
## How many discs are there in this album ?
|
||||
# number_of_discs: 1
|
||||
|
||||
## Any supplementary pictures you want to display.
|
||||
## These pictures should be in the site asset folder : <your hugo site>/static
|
||||
## If you put them into a sub-folder, don't forget it in the path !
|
||||
# pictures:
|
||||
# - this-album/pict.jpg
|
||||
|
||||
## The publish year
|
||||
# year: 1990
|
||||
|
||||
## What is its condition, new ? used ? bad ?
|
||||
# condition:
|
||||
|
||||
## Below the metadata block, you can write some content such as a review or anything else you want. It'll be displayed in the album page.
|
||||
---
|
13
sample/hugo.yaml
Normal file
@ -0,0 +1,13 @@
|
||||
baseurl: http://localhost
|
||||
languageCode: 'en-us'
|
||||
title: 'Sample Collection'
|
||||
author: Sample
|
||||
theme: vinyl-records-collection-theme
|
||||
|
||||
taxonomies:
|
||||
artist: artist
|
||||
genres: genres
|
||||
label: label
|
||||
year: year
|
||||
format: format
|
||||
|
56
sample/public/.comments/default.jpg.xml
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<comment version="3.0">
|
||||
<caption/>
|
||||
<note/>
|
||||
<place/>
|
||||
<categories>
|
||||
<category value="lp"/>
|
||||
<category value="long"/>
|
||||
<category value="play"/>
|
||||
<category value="album"/>
|
||||
<category value="vinyl"/>
|
||||
<category value="disc"/>
|
||||
<category value="disk"/>
|
||||
<category value="record"/>
|
||||
<category value="yellow"/>
|
||||
<category value="isolated"/>
|
||||
<category value="audio"/>
|
||||
<category value="blank"/>
|
||||
<category value="empty"/>
|
||||
<category value="copyspace"/>
|
||||
<category value="copy-space"/>
|
||||
<category value="background"/>
|
||||
<category value="black"/>
|
||||
<category value="closeup"/>
|
||||
<category value="club"/>
|
||||
<category value="disco"/>
|
||||
<category value="discotheque"/>
|
||||
<category value="seamless"/>
|
||||
<category value="entertainment"/>
|
||||
<category value="equipment"/>
|
||||
<category value="gramophone"/>
|
||||
<category value="groove"/>
|
||||
<category value="hi-fi"/>
|
||||
<category value="jockey"/>
|
||||
<category value="label"/>
|
||||
<category value="media"/>
|
||||
<category value="music"/>
|
||||
<category value="musical"/>
|
||||
<category value="old"/>
|
||||
<category value="plate"/>
|
||||
<category value="player"/>
|
||||
<category value="pop"/>
|
||||
<category value="retro"/>
|
||||
<category value="rock"/>
|
||||
<category value="scratch"/>
|
||||
<category value="single"/>
|
||||
<category value="song"/>
|
||||
<category value="sound"/>
|
||||
<category value="spin"/>
|
||||
<category value="track"/>
|
||||
<category value="tune"/>
|
||||
<category value="turn"/>
|
||||
<category value="turntable"/>
|
||||
<category value="vintage"/>
|
||||
</categories>
|
||||
</comment>
|
68
sample/public/artist/bon-jovi/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/bon-jovi/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Bon Jovi · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Bon Jovi</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/bon-jovi-2020/" class="album-title">2020</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/rock" class="genres">Rock</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/island" class="album-info">Island</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2020" class="album-info">2020</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/artist/bon-jovi/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Bon Jovi on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/bon-jovi/</link>
|
||||
<description>Recent content in Bon Jovi on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:54:28 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/bon-jovi/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>2020</title>
|
||||
<link>https://vinyl.zedas.fr/bon-jovi-2020/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/bon-jovi-2020/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/artist/carpenter-brut/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/carpenter-brut/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Carpenter Brut · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/carpenter-brut/leather-terror-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Carpenter Brut</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/carpenter-brute-leather-terror/" class="album-title">Leather Terror</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/darksynth" class="genres">Darksynth</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/no-quarter-prod" class="album-info">No Quarter Prod</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2022" class="album-info">2022</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/artist/carpenter-brut/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Carpenter Brut on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/carpenter-brut/</link>
|
||||
<description>Recent content in Carpenter Brut on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:14:27 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/carpenter-brut/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Leather Terror</title>
|
||||
<link>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/artist/cinderella/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/cinderella/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Cinderella · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Cinderella</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/cinderella-night-songs/" class="album-title">Night Songs</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/mercury" class="album-info">Mercury</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1986" class="album-info">1986</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/artist/cinderella/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Cinderella on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/cinderella/</link>
|
||||
<description>Recent content in Cinderella on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/cinderella/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Night Songs</title>
|
||||
<link>https://vinyl.zedas.fr/cinderella-night-songs/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/cinderella-night-songs/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/artist/daft-punk/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/daft-punk/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Daft Punk · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/artist/daft-punk/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Daft Punk on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/daft-punk/</link>
|
||||
<description>Recent content in Daft Punk on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/daft-punk/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
159
sample/public/artist/index.html
Normal file
@ -0,0 +1,159 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Artist · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/cinderella/" class="album-title">Cinderella</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/bon-jovi/" class="album-title">Bon Jovi</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/scorpions/" class="album-title">Scorpions</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/iron-maiden/" class="album-title">Iron Maiden</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/m83/" class="album-title">M83</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/daft-punk/" class="album-title">Daft Punk</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/carpenter-brut/" class="album-title">Carpenter Brut</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/artist/w.a.s.p./" class="album-title">W.A.S.P.</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
83
sample/public/artist/index.xml
Normal file
@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Artist on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/</link>
|
||||
<description>Recent content in Artist on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Cinderella</title>
|
||||
<link>https://vinyl.zedas.fr/artist/cinderella/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/cinderella/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Bon Jovi</title>
|
||||
<link>https://vinyl.zedas.fr/artist/bon-jovi/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/bon-jovi/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Scorpions</title>
|
||||
<link>https://vinyl.zedas.fr/artist/scorpions/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/scorpions/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Iron Maiden</title>
|
||||
<link>https://vinyl.zedas.fr/artist/iron-maiden/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/iron-maiden/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>M83</title>
|
||||
<link>https://vinyl.zedas.fr/artist/m83/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/m83/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Daft Punk</title>
|
||||
<link>https://vinyl.zedas.fr/artist/daft-punk/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/daft-punk/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Carpenter Brut</title>
|
||||
<link>https://vinyl.zedas.fr/artist/carpenter-brut/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/carpenter-brut/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>W.A.S.P.</title>
|
||||
<link>https://vinyl.zedas.fr/artist/w.a.s.p./</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/artist/w.a.s.p./</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/artist/iron-maiden/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/iron-maiden/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Iron Maiden · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/iron-maiden/the-number-of-the-beast-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Iron Maiden</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/" class="album-title">The Number of the Beast</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/emi" class="album-info">EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1982" class="album-info">1982</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/artist/iron-maiden/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Iron Maiden on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/iron-maiden/</link>
|
||||
<description>Recent content in Iron Maiden on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:58:54 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/iron-maiden/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>The Number of the Beast</title>
|
||||
<link>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
103
sample/public/artist/m83/index.html
Normal file
@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/m83/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>M83 · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/" class="album-title">Dead Cities, Red Cities & Lost Ghosts</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
29
sample/public/artist/m83/index.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>M83 on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/m83/</link>
|
||||
<description>Recent content in M83 on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:53:44 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/m83/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts</title>
|
||||
<link>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
72
sample/public/artist/scorpions/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/scorpions/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Scorpions · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
21
sample/public/artist/scorpions/index.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Scorpions on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/scorpions/</link>
|
||||
<description>Recent content in Scorpions on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:49:18 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/artist/scorpions/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
39
sample/public/artist/w.a.s.p./index.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/artist/w.a.s.p./index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>W.A.S.P. · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
10
sample/public/artist/w.a.s.p./index.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>W.A.S.P. on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/artist/w.a.s.p./</link>
|
||||
<description>Recent content in W.A.S.P. on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language><atom:link href="https://vinyl.zedas.fr/artist/w.a.s.p./index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
86
sample/public/bon-jovi-2020/index.html
Normal file
@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>2020 · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">2020</h1>
|
||||
<a href="/artist/bon-jovi" class="record-artist">Bon Jovi</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/img/default.png" alt="2020" title="2020" />
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/island" class="album-info">Island</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2020" class="album-info">2020</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : New</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/rock" class="genres">Rock</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
BIN
sample/public/carpenter-brut/leather-terror-back.jpg
Normal file
After Width: | Height: | Size: 134 KiB |
BIN
sample/public/carpenter-brut/leather-terror-front.jpg
Normal file
After Width: | Height: | Size: 116 KiB |
99
sample/public/carpenter-brute-leather-terror/index.html
Normal file
@ -0,0 +1,99 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Leather Terror · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">Leather Terror</h1>
|
||||
<a href="/artist/carpenter-brut" class="record-artist">Carpenter Brut</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
<a href="/carpenter-brut/leather-terror-front.jpg">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/carpenter-brut/leather-terror-front.jpg" alt="Leather Terror" title="Leather Terror" />
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/no-quarter-prod" class="album-info">No Quarter Prod</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2022" class="album-info">2022</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : New</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/darksynth" class="genres">Darksynth</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<section class="record-pictures">
|
||||
<details>
|
||||
<summary><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M2.9918 21C2.44405 21 2 20.5551 2 20.0066V3.9934C2 3.44476 2.45531 3 2.9918 3H21.0082C21.556 3 22 3.44495 22 3.9934V20.0066C22 20.5552 21.5447 21 21.0082 21H2.9918ZM20 15V5H4V19L14 9L20 15ZM20 17.8284L14 11.8284L6.82843 19H20V17.8284ZM8 11C6.89543 11 6 10.1046 6 9C6 7.89543 6.89543 7 8 7C9.10457 7 10 7.89543 10 9C10 10.1046 9.10457 11 8 11Z"></path></svg> More pictures</summary>
|
||||
|
||||
<a href="/carpenter-brut/leather-terror-back.jpg"><img src="/carpenter-brut/leather-terror-back.jpg" alt="carpenter-brut/leather-terror-back.jpg" title="carpenter-brut/leather-terror-back.jpg" /></a>
|
||||
|
||||
</details>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
86
sample/public/cinderella-night-songs/index.html
Normal file
@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Night Songs · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">Night Songs</h1>
|
||||
<a href="/artist/cinderella" class="record-artist">Cinderella</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/img/default.png" alt="Night Songs" title="Night Songs" />
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/mercury" class="album-info">Mercury</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1986" class="album-info">1986</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : Good</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
39
sample/public/css/custom.css
Normal file
@ -0,0 +1,39 @@
|
||||
:root {
|
||||
|
||||
/* Set sans-serif & mono fonts */
|
||||
--sans-font: "Droid Sans", Arial, Helvetica, "Helvetica Neue", sans-serif;
|
||||
--mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
|
||||
|
||||
/* Body font size. By default, effectively 18.4px, based on 16px as 'root em' */
|
||||
--base-fontsize: 1.15rem;
|
||||
|
||||
/* Major third scale progression - see https://type-scale.com/ */
|
||||
--header-scale: 1.25;
|
||||
|
||||
/* Line height is set to the "Golden ratio" for optimal legibility */
|
||||
--line-height: 1.618;
|
||||
|
||||
/* Default (light) theme */
|
||||
/* inverted both becase I prefer dark theme by default */
|
||||
--bg: #212121;
|
||||
--bg-transparent: #2f2f2f41;
|
||||
--bg-album-transparent: #2f2f2fe5;
|
||||
--bg-genres: #0d517e;
|
||||
--accent-bg: #2B2B2B;
|
||||
--text: #000000;
|
||||
--text-light: #ABABAB;
|
||||
--border: #666;
|
||||
--accent: #0099ff;
|
||||
--accent-light: #FFECB3;
|
||||
--code: #F06292;
|
||||
--preformatted: #CCC;
|
||||
--disabled: #111;
|
||||
--link-genres: #fff;
|
||||
--link-color: #0d517e;
|
||||
--header-title-color: #fff;
|
||||
--nav-a-color: #fff;
|
||||
--nav-a-accent-bg: #666;
|
||||
--bg-header-elements: #b4b4b438;
|
||||
--footer-text-color: #fff;
|
||||
|
||||
}
|
328
sample/public/css/style.css
Normal file
@ -0,0 +1,328 @@
|
||||
:root {
|
||||
|
||||
/* Set sans-serif & mono fonts */
|
||||
--sans-font: "Droid Sans", Arial, Helvetica, "Helvetica Neue", sans-serif;
|
||||
--mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
|
||||
|
||||
/* Body font size. By default, effectively 18.4px, based on 16px as 'root em' */
|
||||
--base-fontsize: 1rem;
|
||||
|
||||
/* Major third scale progression - see https://type-scale.com/ */
|
||||
--header-scale: 1.25;
|
||||
|
||||
/* Line height is set to the "Golden ratio" for optimal legibility */
|
||||
--line-height: 1.618;
|
||||
|
||||
/* Default (light) theme */
|
||||
/* inverted both becase I prefer dark theme by default */
|
||||
--bg: #212121;
|
||||
--bg-transparent: #2f2f2f41;
|
||||
--bg-album-transparent: #2f2f2fe5;
|
||||
--bg-genres: #0d517e;
|
||||
--accent-bg: #2B2B2B;
|
||||
--text: #000000;
|
||||
--text-light: #ABABAB;
|
||||
--border: #666;
|
||||
--accent: #0099ff;
|
||||
--accent-light: #FFECB3;
|
||||
--code: #F06292;
|
||||
--preformatted: #CCC;
|
||||
--disabled: #111;
|
||||
--link-genres: #fff;
|
||||
--link-color: #0d517e;
|
||||
--header-title-color: #fff;
|
||||
--nav-a-color: #fff;
|
||||
--nav-a-accent-bg: #666;
|
||||
--bg-header-elements: #b4b4b438;
|
||||
--footer-text-color: #fff;
|
||||
--bg-album-card: #dad9d9;
|
||||
|
||||
}
|
||||
|
||||
/* main body */
|
||||
html {
|
||||
/* Set the font globally */
|
||||
font-family: var(--sans-font);
|
||||
font-size: var(--base-fontsize);
|
||||
}
|
||||
|
||||
/* Reset some default styles */
|
||||
body, h1, h2, h3, p, ul, li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Basic styling */
|
||||
body {
|
||||
color: var(--color);
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
padding-top: 1.5rem;
|
||||
padding-bottom: 1.5rem;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
margin-bottom: 0.5rem;
|
||||
display: block;
|
||||
padding: 0.5rem;
|
||||
color: var(--header-title-color);
|
||||
background-color: var(--bg-header-elements);
|
||||
}
|
||||
|
||||
nav a:link, a:visited {
|
||||
text-decoration: none;
|
||||
color: var(--nav-a-color);
|
||||
display: inline-block;
|
||||
margin: 0.4rem;
|
||||
padding: 0.5rem;
|
||||
border: 1px solid var(--nav-a-color);
|
||||
background-color: var(--bg-header-elements);
|
||||
border-radius: 5px;
|
||||
transition: all 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
background-color: var(--nav-a-accent-bg);
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 1rem;
|
||||
margin-left: 5rem;
|
||||
margin-right: 5rem;
|
||||
}
|
||||
|
||||
/* On screens that are 992px wide or less, go from four columns to two columns */
|
||||
@media screen and (max-width: 992px) {
|
||||
main {
|
||||
margin-left: 0.2rem;
|
||||
margin-right: 0.2rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
|
||||
@media screen and (max-width: 600px) {
|
||||
main {
|
||||
margin-left: 0.1rem;
|
||||
margin-right: 0.1rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* common */
|
||||
|
||||
a.genres:link, a.genres:visited {
|
||||
text-decoration: none;
|
||||
padding: 0.3rem;
|
||||
background-color: var(--bg-genres);
|
||||
color: var(--link-genres);
|
||||
transition: all 0.3s ease;
|
||||
display: inline-block;
|
||||
margin: 0.1rem;
|
||||
}
|
||||
|
||||
a.genres:hover {
|
||||
background-color: var(--accent);
|
||||
}
|
||||
|
||||
a.album-info:link, a.album-info:visited {
|
||||
text-decoration: none;
|
||||
padding: 0.3rem;
|
||||
border: 1px solid var(--bg-genres);
|
||||
border-radius: 5px;
|
||||
color: var(--bg-genres);
|
||||
transition: all 0.3s ease;
|
||||
display: inline-block;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
a.album-info:hover {
|
||||
color: var(--accent);
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
ul > li {
|
||||
list-style-type: none;
|
||||
font-size: smaller;
|
||||
margin: 0.1rem;
|
||||
}
|
||||
|
||||
/* album list page */
|
||||
|
||||
main.album-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
/* Create four equal columns */
|
||||
.album-card {
|
||||
flex: 25%;
|
||||
/* border: 1px solid black; */
|
||||
min-height: 250px;
|
||||
margin: 0.2rem;
|
||||
background-repeat: no-repeat;
|
||||
background-position: left;
|
||||
background-size: 250px;
|
||||
padding-left: 255px;
|
||||
padding-top: 0.1rem;
|
||||
padding-right: 0.1rem;
|
||||
padding-bottom: 0.1rem;
|
||||
background-color: var(--bg-album-card);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
/* On screens that are 992px wide or less, go from four columns to two columns */
|
||||
@media screen and (max-width: 992px) {
|
||||
.album-card {
|
||||
flex: 50%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
|
||||
@media screen and (max-width: 600px) {
|
||||
.row {
|
||||
flex-direction: column;
|
||||
}
|
||||
.album-card {
|
||||
background-position: top;
|
||||
padding-left: 0.1rem;
|
||||
padding-top: 255px;
|
||||
min-height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
a.album-artist:link, a.album-artist:visited {
|
||||
text-decoration: none;
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
transition: color 0.3s ease;
|
||||
display: block;
|
||||
border-bottom: 1px solid black;
|
||||
text-transform: uppercase;
|
||||
color: var(--link-color);
|
||||
padding-left: 0.1rem;
|
||||
}
|
||||
|
||||
a.album-artist:hover {
|
||||
color: var(--accent)
|
||||
}
|
||||
|
||||
a.album-title:link, a.album-title:visited {
|
||||
text-decoration: none;
|
||||
font-size: x-large;
|
||||
font-weight: bold;
|
||||
transition: color 0.3s ease;
|
||||
display: block;
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
a.album-title:hover {
|
||||
color: var(--accent)
|
||||
}
|
||||
|
||||
p.album-genres {
|
||||
font-size: small;
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
||||
|
||||
/* album display page */
|
||||
|
||||
section.record {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
section.record > div {
|
||||
flex: 25%;
|
||||
margin: 1rem;
|
||||
/* border: 1px solid black; */
|
||||
}
|
||||
|
||||
section.record > div > p {
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
section.record > div > ul > li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
section.record > div > h1 {
|
||||
border-bottom: 1px solid var(--link-color);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
section.record > div > h1.album-title {
|
||||
font-size: xx-large;
|
||||
}
|
||||
|
||||
section.record img,
|
||||
section.record-pictures img {
|
||||
max-width: 250px;
|
||||
}
|
||||
|
||||
|
||||
section.record-pictures {
|
||||
flex: 100%;
|
||||
padding: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
section.record-pictures summary {
|
||||
margin-bottom: 1rem;
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
section.content {
|
||||
flex: 100%;
|
||||
padding: 1rem;
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
section.content p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
a.record-artist:link, a.record-artist:visited {
|
||||
text-decoration: none;
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
transition: color 0.3s ease;
|
||||
text-transform: uppercase;
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
a.record-artist:hover {
|
||||
color: var(--accent)
|
||||
}
|
||||
|
||||
/* footer */
|
||||
|
||||
footer {
|
||||
color: var(--footer-text-color);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
padding: 2rem;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
footer a:link, a:visited {
|
||||
color: var(--nav-a-color);
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
text-decoration: none;
|
||||
}
|
98
sample/public/daft-punk-discovery/index.html
Normal file
@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Discovery · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">Discovery</h1>
|
||||
<a href="/artist/daft-punk" class="record-artist">Daft Punk</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
<a href="/daft-punk/discovery-front.jpg">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/daft-punk/discovery-front.jpg" alt="Discovery" title="Discovery" />
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : New</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
BIN
sample/public/daft-punk/discovery-front.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
sample/public/disc1.png
Normal file
After Width: | Height: | Size: 80 KiB |
351
sample/public/format/33rpm/index.html
Normal file
@ -0,0 +1,351 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/format/33rpm/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>33rpm · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Cinderella</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/cinderella-night-songs/" class="album-title">Night Songs</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/mercury" class="album-info">Mercury</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1986" class="album-info">1986</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Bon Jovi</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/bon-jovi-2020/" class="album-title">2020</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/rock" class="genres">Rock</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/island" class="album-info">Island</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2020" class="album-info">2020</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/crimson-idol.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-the-crimson-idol/" class="album-title">The Crimson Idol</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/parlophone" class="album-info">Parlophone</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2012" class="album-info">2012</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/wasp-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-wasp/" class="album-title">W.A.S.P.</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/capitol" class="album-info">Capitol</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2017" class="album-info">2017</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/iron-maiden/the-number-of-the-beast-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Iron Maiden</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/" class="album-title">The Number of the Beast</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/emi" class="album-info">EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1982" class="album-info">1982</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/" class="album-title">Dead Cities, Red Cities & Lost Ghosts</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/carpenter-brut/leather-terror-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Carpenter Brut</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/carpenter-brute-leather-terror/" class="album-title">Leather Terror</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/darksynth" class="genres">Darksynth</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/no-quarter-prod" class="album-info">No Quarter Prod</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2022" class="album-info">2022</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
102
sample/public/format/33rpm/index.xml
Normal file
@ -0,0 +1,102 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>33rpm on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/format/33rpm/</link>
|
||||
<description>Recent content in 33rpm on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/format/33rpm/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Night Songs</title>
|
||||
<link>https://vinyl.zedas.fr/cinderella-night-songs/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/cinderella-night-songs/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>2020</title>
|
||||
<link>https://vinyl.zedas.fr/bon-jovi-2020/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/bon-jovi-2020/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Crimson Idol</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-the-crimson-idol/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:42:51 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-the-crimson-idol/</guid>
|
||||
<description>This is a 2012 German reissue of my favorite album of this band. The disc is transparent red. The Crimson Idol is an Opera Rock which is for me the best piece of Heavy Metal I&rsquo;ve ever heard.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>W.A.S.P.</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-wasp/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:34:09 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-wasp/</guid>
|
||||
<description>This picture album is a German limited edition reissue of the 1984 debut studio album of the american heavy metal band W.A.S.P.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Number of the Beast</title>
|
||||
<link>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts</title>
|
||||
<link>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Leather Terror</title>
|
||||
<link>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
54
sample/public/format/index.html
Normal file
@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/format/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Format · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/format/33rpm/" class="album-title">33rpm</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/format/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Format on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/format/</link>
|
||||
<description>Recent content in Format on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/format/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>33rpm</title>
|
||||
<link>https://vinyl.zedas.fr/format/33rpm/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/format/33rpm/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
72
sample/public/genres/ambient/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/ambient/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Ambient · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/ambient/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Ambient on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/ambient/</link>
|
||||
<description>Recent content in Ambient on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:48:53 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/ambient/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/genres/darksynth/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/darksynth/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Darksynth · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/carpenter-brut/leather-terror-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Carpenter Brut</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/carpenter-brute-leather-terror/" class="album-title">Leather Terror</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/darksynth" class="genres">Darksynth</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/no-quarter-prod" class="album-info">No Quarter Prod</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2022" class="album-info">2022</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/darksynth/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Darksynth on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/darksynth/</link>
|
||||
<description>Recent content in Darksynth on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:14:27 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/darksynth/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Leather Terror</title>
|
||||
<link>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/genres/disco/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/disco/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Disco · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/disco/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Disco on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/disco/</link>
|
||||
<description>Recent content in Disco on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/disco/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/genres/electro-funk/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/electro-funk/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Electro-funk · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/electro-funk/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Electro-funk on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/electro-funk/</link>
|
||||
<description>Recent content in Electro-funk on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/electro-funk/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
70
sample/public/genres/electronic/index.html
Normal file
@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/electronic/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Electronic · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/" class="album-title">Dead Cities, Red Cities & Lost Ghosts</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/electronic/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Electronic on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/electronic/</link>
|
||||
<description>Recent content in Electronic on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:53:44 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/electronic/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts</title>
|
||||
<link>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/genres/french-house/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/french-house/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>French House · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/french-house/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>French House on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/french-house/</link>
|
||||
<description>Recent content in French House on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/french-house/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
163
sample/public/genres/glam-metal/index.html
Normal file
@ -0,0 +1,163 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/glam-metal/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Glam Metal · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Cinderella</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/cinderella-night-songs/" class="album-title">Night Songs</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/mercury" class="album-info">Mercury</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1986" class="album-info">1986</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/crimson-idol.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-the-crimson-idol/" class="album-title">The Crimson Idol</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/parlophone" class="album-info">Parlophone</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2012" class="album-info">2012</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/wasp-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-wasp/" class="album-title">W.A.S.P.</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/capitol" class="album-info">Capitol</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2017" class="album-info">2017</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
48
sample/public/genres/glam-metal/index.xml
Normal file
@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Glam Metal on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/glam-metal/</link>
|
||||
<description>Recent content in Glam Metal on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/glam-metal/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Night Songs</title>
|
||||
<link>https://vinyl.zedas.fr/cinderella-night-songs/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/cinderella-night-songs/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Crimson Idol</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-the-crimson-idol/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:42:51 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-the-crimson-idol/</guid>
|
||||
<description>This is a 2012 German reissue of my favorite album of this band. The disc is transparent red. The Crimson Idol is an Opera Rock which is for me the best piece of Heavy Metal I&rsquo;ve ever heard.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>W.A.S.P.</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-wasp/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:34:09 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-wasp/</guid>
|
||||
<description>This picture album is a German limited edition reissue of the 1984 debut studio album of the american heavy metal band W.A.S.P.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
72
sample/public/genres/hard-rock/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/hard-rock/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Hard Rock · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
21
sample/public/genres/hard-rock/index.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Hard Rock on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/hard-rock/</link>
|
||||
<description>Recent content in Hard Rock on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:49:18 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/hard-rock/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
163
sample/public/genres/heavy-metal/index.html
Normal file
@ -0,0 +1,163 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/heavy-metal/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Heavy Metal · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/crimson-idol.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-the-crimson-idol/" class="album-title">The Crimson Idol</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/parlophone" class="album-info">Parlophone</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2012" class="album-info">2012</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/wasp-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-wasp/" class="album-title">W.A.S.P.</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/capitol" class="album-info">Capitol</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2017" class="album-info">2017</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/iron-maiden/the-number-of-the-beast-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Iron Maiden</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/" class="album-title">The Number of the Beast</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/emi" class="album-info">EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1982" class="album-info">1982</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
48
sample/public/genres/heavy-metal/index.xml
Normal file
@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Heavy Metal on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/heavy-metal/</link>
|
||||
<description>Recent content in Heavy Metal on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:49:18 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/heavy-metal/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Crimson Idol</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-the-crimson-idol/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:42:51 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-the-crimson-idol/</guid>
|
||||
<description>This is a 2012 German reissue of my favorite album of this band. The disc is transparent red. The Crimson Idol is an Opera Rock which is for me the best piece of Heavy Metal I&rsquo;ve ever heard.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>W.A.S.P.</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-wasp/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:34:09 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-wasp/</guid>
|
||||
<description>This picture album is a German limited edition reissue of the 1984 debut studio album of the american heavy metal band W.A.S.P.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Number of the Beast</title>
|
||||
<link>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/genres/house/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/house/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>House · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/house/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>House on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/house/</link>
|
||||
<description>Recent content in House on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/house/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
249
sample/public/genres/index.html
Normal file
@ -0,0 +1,249 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Genres · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/glam-metal/" class="album-title">Glam Metal</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/rock/" class="album-title">Rock</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/hard-rock/" class="album-title">Hard Rock</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/heavy-metal/" class="album-title">Heavy Metal</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/electronic/" class="album-title">Electronic</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/shoegaze/" class="album-title">Shoegaze</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/ambient/" class="album-title">Ambient</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/synth-pop/" class="album-title">Synth-pop</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/disco/" class="album-title">Disco</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/electro-funk/" class="album-title">Electro-funk</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/french-house/" class="album-title">French House</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/house/" class="album-title">House</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/nu-disco/" class="album-title">Nu-disco</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/genres/darksynth/" class="album-title">Darksynth</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
137
sample/public/genres/index.xml
Normal file
@ -0,0 +1,137 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Genres on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/</link>
|
||||
<description>Recent content in Genres on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Glam Metal</title>
|
||||
<link>https://vinyl.zedas.fr/genres/glam-metal/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/glam-metal/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Rock</title>
|
||||
<link>https://vinyl.zedas.fr/genres/rock/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/rock/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Hard Rock</title>
|
||||
<link>https://vinyl.zedas.fr/genres/hard-rock/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/hard-rock/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Heavy Metal</title>
|
||||
<link>https://vinyl.zedas.fr/genres/heavy-metal/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/heavy-metal/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Electronic</title>
|
||||
<link>https://vinyl.zedas.fr/genres/electronic/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/electronic/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Shoegaze</title>
|
||||
<link>https://vinyl.zedas.fr/genres/shoegaze/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/shoegaze/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Ambient</title>
|
||||
<link>https://vinyl.zedas.fr/genres/ambient/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/ambient/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Synth-pop</title>
|
||||
<link>https://vinyl.zedas.fr/genres/synth-pop/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/synth-pop/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Disco</title>
|
||||
<link>https://vinyl.zedas.fr/genres/disco/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/disco/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Electro-funk</title>
|
||||
<link>https://vinyl.zedas.fr/genres/electro-funk/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/electro-funk/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>French House</title>
|
||||
<link>https://vinyl.zedas.fr/genres/french-house/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/french-house/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>House</title>
|
||||
<link>https://vinyl.zedas.fr/genres/house/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/house/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Nu-disco</title>
|
||||
<link>https://vinyl.zedas.fr/genres/nu-disco/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/nu-disco/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Darksynth</title>
|
||||
<link>https://vinyl.zedas.fr/genres/darksynth/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/genres/darksynth/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/genres/nu-disco/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/nu-disco/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Nu-disco · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/nu-disco/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Nu-disco on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/nu-disco/</link>
|
||||
<description>Recent content in Nu-disco on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/nu-disco/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/genres/rock/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/rock/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Rock · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Bon Jovi</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/bon-jovi-2020/" class="album-title">2020</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/rock" class="genres">Rock</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/island" class="album-info">Island</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2020" class="album-info">2020</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/rock/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Rock on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/rock/</link>
|
||||
<description>Recent content in Rock on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:54:28 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/rock/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>2020</title>
|
||||
<link>https://vinyl.zedas.fr/bon-jovi-2020/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/bon-jovi-2020/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
103
sample/public/genres/shoegaze/index.html
Normal file
@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/shoegaze/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Shoegaze · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/" class="album-title">Dead Cities, Red Cities & Lost Ghosts</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
29
sample/public/genres/shoegaze/index.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Shoegaze on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/shoegaze/</link>
|
||||
<description>Recent content in Shoegaze on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:53:44 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/shoegaze/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts</title>
|
||||
<link>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
72
sample/public/genres/synth-pop/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/genres/synth-pop/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Synth-pop · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/genres/synth-pop/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Synth-pop on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/genres/synth-pop/</link>
|
||||
<description>Recent content in Synth-pop on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:48:53 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/genres/synth-pop/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
BIN
sample/public/guns-n-roses/appetite-for-destruction-front.jpg
Normal file
After Width: | Height: | Size: 74 KiB |
BIN
sample/public/img/back-footer.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
sample/public/img/back-header.jpg
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
sample/public/img/default.png
Normal file
After Width: | Height: | Size: 88 KiB |
351
sample/public/index.html
Normal file
@ -0,0 +1,351 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Cinderella</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/cinderella-night-songs/" class="album-title">Night Songs</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/mercury" class="album-info">Mercury</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1986" class="album-info">1986</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Bon Jovi</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/bon-jovi-2020/" class="album-title">2020</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/rock" class="genres">Rock</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/island" class="album-info">Island</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2020" class="album-info">2020</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/crimson-idol.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-the-crimson-idol/" class="album-title">The Crimson Idol</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/parlophone" class="album-info">Parlophone</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2012" class="album-info">2012</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/wasp-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-wasp/" class="album-title">W.A.S.P.</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/capitol" class="album-info">Capitol</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2017" class="album-info">2017</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/iron-maiden/the-number-of-the-beast-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Iron Maiden</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/" class="album-title">The Number of the Beast</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/emi" class="album-info">EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1982" class="album-info">1982</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/" class="album-title">Dead Cities, Red Cities & Lost Ghosts</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/carpenter-brut/leather-terror-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Carpenter Brut</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/carpenter-brute-leather-terror/" class="album-title">Leather Terror</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/darksynth" class="genres">Darksynth</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/no-quarter-prod" class="album-info">No Quarter Prod</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2022" class="album-info">2022</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
102
sample/public/index.xml
Normal file
@ -0,0 +1,102 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/</link>
|
||||
<description>Recent content on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Night Songs</title>
|
||||
<link>https://vinyl.zedas.fr/cinderella-night-songs/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/cinderella-night-songs/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>2020</title>
|
||||
<link>https://vinyl.zedas.fr/bon-jovi-2020/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/bon-jovi-2020/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Crimson Idol</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-the-crimson-idol/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:42:51 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-the-crimson-idol/</guid>
|
||||
<description>This is a 2012 German reissue of my favorite album of this band. The disc is transparent red. The Crimson Idol is an Opera Rock which is for me the best piece of Heavy Metal I&rsquo;ve ever heard.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>W.A.S.P.</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-wasp/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:34:09 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-wasp/</guid>
|
||||
<description>This picture album is a German limited edition reissue of the 1984 debut studio album of the american heavy metal band W.A.S.P.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Number of the Beast</title>
|
||||
<link>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts</title>
|
||||
<link>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Leather Terror</title>
|
||||
<link>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
90
sample/public/iron-maiden-the-number-of-the-beast/index.html
Normal file
@ -0,0 +1,90 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>The Number of the Beast · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">The Number of the Beast</h1>
|
||||
<a href="/artist/iron-maiden" class="record-artist">Iron Maiden</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
<a href="/iron-maiden/the-number-of-the-beast-front.jpg">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/iron-maiden/the-number-of-the-beast-front.jpg" alt="The Number of the Beast" title="The Number of the Beast" />
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/emi" class="album-info">EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1982" class="album-info">1982</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : New, 2014 reedition</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
BIN
sample/public/iron-maiden/the-number-of-the-beast-front.jpg
Normal file
After Width: | Height: | Size: 122 KiB |
70
sample/public/label/capitol/index.html
Normal file
@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/capitol/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Capitol · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/wasp-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-wasp/" class="album-title">W.A.S.P.</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/capitol" class="album-info">Capitol</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2017" class="album-info">2017</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/capitol/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Capitol on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/capitol/</link>
|
||||
<description>Recent content in Capitol on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:34:09 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/capitol/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>W.A.S.P.</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-wasp/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:34:09 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-wasp/</guid>
|
||||
<description>This picture album is a German limited edition reissue of the 1984 debut studio album of the american heavy metal band W.A.S.P.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/label/emi/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/emi/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>EMI · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/iron-maiden/the-number-of-the-beast-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Iron Maiden</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/" class="album-title">The Number of the Beast</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/emi" class="album-info">EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1982" class="album-info">1982</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/emi/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>EMI on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/emi/</link>
|
||||
<description>Recent content in EMI on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:58:54 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/emi/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>The Number of the Beast</title>
|
||||
<link>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/iron-maiden-the-number-of-the-beast/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
70
sample/public/label/gooom/index.html
Normal file
@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/gooom/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Gooom · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/" class="album-title">Dead Cities, Red Cities & Lost Ghosts</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/gooom/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Gooom on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/gooom/</link>
|
||||
<description>Recent content in Gooom on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:53:44 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/gooom/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts</title>
|
||||
<link>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-dead-cities-red-cities-lost-ghosts/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
72
sample/public/label/harvest/emi/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/harvest/emi/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Harvest/EMI · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Scorpions</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/scorpions-love-at-first-sting/" class="album-title">Love at First Sting</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/hard-rock" class="genres">Hard Rock</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/harvest/emi" class="album-info">Harvest/EMI</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1984" class="album-info">1984</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/harvest/emi/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Harvest/EMI on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/harvest/emi/</link>
|
||||
<description>Recent content in Harvest/EMI on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language><atom:link href="https://vinyl.zedas.fr/label/harvest/emi/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Love at First Sting</title>
|
||||
<link>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:49:18 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/scorpions-love-at-first-sting/</guid>
|
||||
<description>Actually, I have double entries of this album. The first one I&rsquo;ve found was damaged and some tracks were unplayable. I&rsquo;ve found later a second one to replace it.
|
||||
However, the first one I&rsquo;ve bought was actually a gift to the original owner. There is a message hand-written on the cover. The kind of nice thing you can discover while buying used vinyl records.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
189
sample/public/label/index.html
Normal file
@ -0,0 +1,189 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Label · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/mercury/" class="album-title">Mercury</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/island/" class="album-title">Island</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/parlophone/" class="album-title">Parlophone</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/capitol/" class="album-title">Capitol</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/emi/" class="album-title">EMI</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/gooom/" class="album-title">Gooom</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/na%C3%AFve/" class="album-title">Naïve</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/virgin/" class="album-title">Virgin</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/no-quarter-prod/" class="album-title">No Quarter Prod</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="https://vinyl.zedas.fr/label/harvest/emi/" class="album-title">Harvest/EMI</a>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
101
sample/public/label/index.xml
Normal file
@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Label on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/</link>
|
||||
<description>Recent content in Label on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Mercury</title>
|
||||
<link>https://vinyl.zedas.fr/label/mercury/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/mercury/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Island</title>
|
||||
<link>https://vinyl.zedas.fr/label/island/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/island/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Parlophone</title>
|
||||
<link>https://vinyl.zedas.fr/label/parlophone/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:42:51 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/parlophone/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Capitol</title>
|
||||
<link>https://vinyl.zedas.fr/label/capitol/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:34:09 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/capitol/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>EMI</title>
|
||||
<link>https://vinyl.zedas.fr/label/emi/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:58:54 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/emi/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Gooom</title>
|
||||
<link>https://vinyl.zedas.fr/label/gooom/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:53:44 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/gooom/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Naïve</title>
|
||||
<link>https://vinyl.zedas.fr/label/na%C3%AFve/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/na%C3%AFve/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Virgin</title>
|
||||
<link>https://vinyl.zedas.fr/label/virgin/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/virgin/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>No Quarter Prod</title>
|
||||
<link>https://vinyl.zedas.fr/label/no-quarter-prod/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/no-quarter-prod/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Harvest/EMI</title>
|
||||
<link>https://vinyl.zedas.fr/label/harvest/emi/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/label/harvest/emi/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/label/island/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/island/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Island · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Bon Jovi</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/bon-jovi-2020/" class="album-title">2020</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/rock" class="genres">Rock</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/island" class="album-info">Island</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2020" class="album-info">2020</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/island/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Island on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/island/</link>
|
||||
<description>Recent content in Island on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:54:28 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/island/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>2020</title>
|
||||
<link>https://vinyl.zedas.fr/bon-jovi-2020/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:54:28 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/bon-jovi-2020/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/label/mercury/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/mercury/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Mercury · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/img/default.png')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Cinderella</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/cinderella-night-songs/" class="album-title">Night Songs</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/mercury" class="album-info">Mercury</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/1986" class="album-info">1986</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/mercury/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Mercury on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/mercury/</link>
|
||||
<description>Recent content in Mercury on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:57:59 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/mercury/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Night Songs</title>
|
||||
<link>https://vinyl.zedas.fr/cinderella-night-songs/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:57:59 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/cinderella-night-songs/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
72
sample/public/label/naïve/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/na%C3%AFve/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Naïve · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">M83</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/" class="album-title">Hurry Up, We're Dreaming</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/naïve/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Naïve on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/na%C3%AFve/</link>
|
||||
<description>Recent content in Naïve on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:48:53 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/na%C3%AFve/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Hurry Up, We're Dreaming</title>
|
||||
<link>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:48:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/m83-hurry-up-were-dreaming/</guid>
|
||||
<description>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
68
sample/public/label/no-quarter-prod/index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/no-quarter-prod/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>No Quarter Prod · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/carpenter-brut/leather-terror-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Carpenter Brut</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/carpenter-brute-leather-terror/" class="album-title">Leather Terror</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/darksynth" class="genres">Darksynth</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/no-quarter-prod" class="album-info">No Quarter Prod</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2022" class="album-info">2022</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/no-quarter-prod/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>No Quarter Prod on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/no-quarter-prod/</link>
|
||||
<description>Recent content in No Quarter Prod on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:14:27 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/no-quarter-prod/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Leather Terror</title>
|
||||
<link>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:14:27 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/carpenter-brute-leather-terror/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
70
sample/public/label/parlophone/index.html
Normal file
@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/parlophone/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Parlophone · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/wasp/crimson-idol.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">W.A.S.P.</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/wasp-the-crimson-idol/" class="album-title">The Crimson Idol</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/heavy-metal" class="genres">Heavy Metal</a>
|
||||
|
||||
<a href="/genres/glam-metal" class="genres">Glam Metal</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/parlophone" class="album-info">Parlophone</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2012" class="album-info">2012</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (1 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/parlophone/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Parlophone on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/parlophone/</link>
|
||||
<description>Recent content in Parlophone on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 22:42:51 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/parlophone/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>The Crimson Idol</title>
|
||||
<link>https://vinyl.zedas.fr/wasp-the-crimson-idol/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 22:42:51 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/wasp-the-crimson-idol/</guid>
|
||||
<description>This is a 2012 German reissue of my favorite album of this band. The disc is transparent red. The Crimson Idol is an Opera Rock which is for me the best piece of Heavy Metal I&rsquo;ve ever heard.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
76
sample/public/label/virgin/index.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://vinyl.zedas.fr/label/virgin/index.xml" title="My Vinyl Records Collection" />
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Virgin · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="album-list">
|
||||
|
||||
|
||||
|
||||
<section class="album-card" style="background-image: url('https://vinyl.zedas.fr/daft-punk/discovery-front.jpg')">
|
||||
|
||||
<a href="/artist/" class="album-artist">Daft Punk</a>
|
||||
|
||||
<a href="https://vinyl.zedas.fr/daft-punk-discovery/" class="album-title">Discovery</a>
|
||||
|
||||
<p class="album-genres">
|
||||
|
||||
<a href="/genres/french-house" class="genres">French House</a>
|
||||
|
||||
<a href="/genres/disco" class="genres">Disco</a>
|
||||
|
||||
<a href="/genres/nu-disco" class="genres">Nu-disco</a>
|
||||
|
||||
<a href="/genres/house" class="genres">House</a>
|
||||
|
||||
<a href="/genres/electro-funk" class="genres">Electro-funk</a>
|
||||
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/virgin" class="album-info">Virgin</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2001" class="album-info">2001</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
sample/public/label/virgin/index.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Virgin on My Vinyl Records Collection</title>
|
||||
<link>https://vinyl.zedas.fr/label/virgin/</link>
|
||||
<description>Recent content in Virgin on My Vinyl Records Collection</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 20 Aug 2023 21:41:05 +0200</lastBuildDate><atom:link href="https://vinyl.zedas.fr/label/virgin/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Discovery</title>
|
||||
<link>https://vinyl.zedas.fr/daft-punk-discovery/</link>
|
||||
<pubDate>Sun, 20 Aug 2023 21:41:05 +0200</pubDate>
|
||||
|
||||
<guid>https://vinyl.zedas.fr/daft-punk-discovery/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
@ -0,0 +1,92 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Dead Cities, Red Cities & Lost Ghosts · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">Dead Cities, Red Cities & Lost Ghosts</h1>
|
||||
<a href="/artist/m83" class="record-artist">M83</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
<a href="/m83/dead-cities-red-seas-lost-ghosts-front.jpg">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/m83/dead-cities-red-seas-lost-ghosts-front.jpg" alt="Dead Cities, Red Cities & Lost Ghosts" title="Dead Cities, Red Cities & Lost Ghosts" />
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/gooom" class="album-info">Gooom</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2003" class="album-info">2003</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : New</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/electronic" class="genres">Electronic</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
99
sample/public/m83-hurry-up-were-dreaming/index.html
Normal file
@ -0,0 +1,99 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="generator" content="Hugo 0.116.1">
|
||||
|
||||
|
||||
|
||||
<title>Hurry Up, We're Dreaming · My Vinyl Records Collection</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://vinyl.zedas.fr/css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header style="background-image: url('https://vinyl.zedas.fr/img/back-header.jpg');">
|
||||
<h1>My Vinyl Records Collection</h1>
|
||||
<nav>
|
||||
<a href="https://vinyl.zedas.fr">Home</a>
|
||||
<a href="/artist/">Artists</a>
|
||||
<a href="/genres/">Genres</a>
|
||||
<a href="/format/">Formats</a>
|
||||
<a href="/label/">Labels</a>
|
||||
</nav>
|
||||
</header><main class="record">
|
||||
<article>
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1 class="album-title">Hurry Up, We're Dreaming</h1>
|
||||
<a href="/artist/m83" class="record-artist">M83</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="text-align: center;">
|
||||
|
||||
<a href="/m83/hurry-up-were-dreaming-front.jpg">
|
||||
|
||||
|
||||
<img src="https://vinyl.zedas.fr/m83/hurry-up-were-dreaming-front.jpg" alt="Hurry Up, We're Dreaming" title="Hurry Up, We're Dreaming" />
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="record">
|
||||
<div>
|
||||
<h1>Record informations</h1>
|
||||
<ul>
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M10.9042 2.1001L20.8037 3.51431L22.2179 13.4138L13.0255 22.6062C12.635 22.9967 12.0019 22.9967 11.6113 22.6062L1.71184 12.7067C1.32131 12.3162 1.32131 11.683 1.71184 11.2925L10.9042 2.1001ZM11.6113 4.22142L3.83316 11.9996L12.3184 20.4849L20.0966 12.7067L19.036 5.28208L11.6113 4.22142ZM13.7327 10.5854C12.9516 9.80433 12.9516 8.538 13.7327 7.75695C14.5137 6.9759 15.78 6.9759 16.5611 7.75695C17.3421 8.538 17.3421 9.80433 16.5611 10.5854C15.78 11.3664 14.5137 11.3664 13.7327 10.5854Z"></path></svg> Label : <a href="/label/na%C3%AFve" class="album-info">Naïve</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M9 1V3H15V1H17V3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H7V1H9ZM20 11H4V19H20V11ZM7 5H4V9H20V5H17V7H15V5H9V7H7V5Z"></path></svg> Year : <a href="/year/2011" class="album-info">2011</a></li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 16C14.2133 16 16 14.2133 16 12C16 9.78667 14.2133 8 12 8C9.78667 8 8 9.78667 8 12C8 14.2133 9.78667 16 12 16ZM12 11C12.55 11 13 11.45 13 12C13 12.55 12.55 13 12 13C11.45 13 11 12.55 11 12C11 11.45 11.45 11 12 11Z"></path></svg> Disc format : <a href="/format/33rpm" class="album-info">33rpm</a> (2 discs)</li>
|
||||
|
||||
|
||||
<li><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM5 4.60434V13.7889C5 15.1263 5.6684 16.3752 6.7812 17.1171L12 20.5963L17.2188 17.1171C18.3316 16.3752 19 15.1263 19 13.7889V4.60434L12 3.04879L5 4.60434Z"></path></svg> Condition : New</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Genres</h1>
|
||||
|
||||
<a href="/genres/synth-pop" class="genres">Synth-pop</a>
|
||||
|
||||
<a href="/genres/ambient" class="genres">Ambient</a>
|
||||
|
||||
<a href="/genres/shoegaze" class="genres">Shoegaze</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="content">
|
||||
<p>This is the first edition of the album. A 10th anniversary edition was issued in 2011.</p>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer style="background-image: url('https://vinyl.zedas.fr/img/back-footer.jpg');">
|
||||
<p>© 2023 My Vinyl Records Collection - Using Hugo theme <a href="https://github.com/Wivik/vinyl-records-collection-theme" target="_blank">Vinyl Records Library</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|