summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Scotsoun.astro50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/components/Scotsoun.astro b/src/components/Scotsoun.astro
index 4825423..a8b4334 100644
--- a/src/components/Scotsoun.astro
+++ b/src/components/Scotsoun.astro
@@ -39,33 +39,33 @@ const t = translate(locale);
/>
</div>
</div>
+</section>
- <section>
- {scotsoun?.description && <p>{scotsoun.description[locale]}</p>}
+<section>
+ {scotsoun?.description && <p>{scotsoun.description[locale]}</p>}
- {
- scotsoun?.coverArtist && (
- <p>{t(tComponent, { key: 'cover-artist', coverArtist: scotsoun.coverArtist })}</p>
- )
- }
+ {
+ scotsoun?.coverArtist && (
+ <p>{t(tComponent, { key: 'cover-artist', coverArtist: scotsoun.coverArtist })}</p>
+ )
+ }
- {
- scotsoun?.releaseDate && (
- <p>{t(tComponent, { key: 'release-date', releaseDate: scotsoun.releaseDate })}</p>
- )
- }
+ {
+ scotsoun?.releaseDate && (
+ <p>{t(tComponent, { key: 'release-date', releaseDate: scotsoun.releaseDate })}</p>
+ )
+ }
- {
- scotsoun?.trackList && scotsoun.trackList.length > 1 && (
- <>
- <h2>Track list</h2>
- <ol>
- {scotsoun.trackList.map((track) => (
- <li>{track}</li>
- ))}
- </ol>
- </>
- )
- }
- </section>
+ {
+ scotsoun?.trackList && scotsoun.trackList.length > 1 && (
+ <>
+ <h2>Track list</h2>
+ <ol>
+ {scotsoun.trackList.map((track) => (
+ <li>{track}</li>
+ ))}
+ </ol>
+ </>
+ )
+ }
</section>