server: add get album bio from last fm function

- co-written by Github Copilot
This commit is contained in:
geoffrey45
2022-01-17 12:32:27 +03:00
parent a720891c20
commit 2ee8d27bf0
20 changed files with 370 additions and 446 deletions
+46 -13
View File
@@ -1,10 +1,17 @@
<template>
<div class="al-bio rounded">
<div class="heading">ALBUM BIOGRAPHY</div>
<div class="heading">
The Very Best Of UB40: ALBUM BIOGRAPHY
<div class="tags">
<div class="item" v-for="tag in tags" :key="tag">
{{ tag }}
</div>
</div>
</div>
<div class="separator"></div>
<div class="content">
Two years after he prematurely left us, the Juice WRLD story continues
with Fighting Demons. The rappers second posthumous album dropped at
with Fighting Demons. The rapper's second posthumous album dropped at
midnight, and is the followup to Legends Never Die, which arrived in July
2020 and hit No. 1 on the Billboard 200 chart.
<br /><br />
@@ -15,22 +22,29 @@
Higgins) was just 21 when he died of an accidental overdose of oxycodone
and codeine. Following his death on Dec. 9, 2019, his mother, Carmela
Wallace, created the Live Free 999 Fund, to help youth struggling with
mental health and substance use issues.
<br><br>
Jarad was always searingly honest
about his struggles and through his musical genius he articulated what was
on his heart and mind vividly through his art. He never gave up and his
friends and family never gave up on offering their support to him, she
continued. We encourage all of you who struggle with addiction and mental
health to never give up the fight. Juices fast rise in the hip-hop space
and untimely passing is the focus of Into the Abyss, a Tommy
Oliver-directed documentary set to premiere Dec. 16 at 8PM on HBO Max.
mental health and substance use issues.
<br /><br />
“Jarad was always searingly honest about his struggles and through his
musical genius he articulated what was on his heart and mind vividly
through his art. He never gave up and his friends and family never gave up
on offering their support to him,” she continued. “We encourage all of you
who struggle with addiction and mental health to never give up the fight."
Juice's fast rise in the hip-hop space and untimely passing is the focus
of Into the Abyss, a Tommy Oliver-directed documentary set to premiere
Dec. 16 at 8PM on HBO Max.
</div>
</div>
</template>
<script>
export default {};
export default {
setup() {
const tags = ["reggea", "ub40", "ali campbell", "astro"];
return {
tags,
};
},
};
</script>
<style lang="scss">
@@ -40,6 +54,25 @@ export default {};
.heading {
margin: 0 0 0 $small;
height: 2rem;
position: relative;
.tags {
position: absolute;
right: 0;
display: flex;
font-weight: normal;
.item {
padding: $small;
background-color: rgb(15, 74, 114);
margin-left: $small;
border-radius: $small;
}
.item::before {
content: "#"
}
}
}
.content {