diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-26 17:50:55 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-26 17:50:55 +0100 |
| commit | 209cad34850bd7a079c60340e40f580c682c5926 (patch) | |
| tree | b93a49ec60bf494bb288adc6216f2d7ee166a7d2 /src | |
| parent | 02dcbceb12005a2384de0ebe200bd64917e42d2f (diff) | |
Better use of section--full-width
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Scotsoun.astro | 50 | ||||
| -rw-r--r-- | src/pages/[locale]/furthsettins/lallans/index.astro | 2 | ||||
| -rw-r--r-- | src/pages/[locale]/furthsettins/scotsoun/index.astro | 2 |
3 files changed, 27 insertions, 27 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> diff --git a/src/pages/[locale]/furthsettins/lallans/index.astro b/src/pages/[locale]/furthsettins/lallans/index.astro index 3e4fd46..1bcfe47 100644 --- a/src/pages/[locale]/furthsettins/lallans/index.astro +++ b/src/pages/[locale]/furthsettins/lallans/index.astro @@ -15,7 +15,7 @@ const t = translate(locale); --- <Page title={t(tFurthsettins, { key: 'title' })}> - <section class="section--full-width"> + <section> <h1>Lallans</h1> <LallansIssuesGallery /> </section> diff --git a/src/pages/[locale]/furthsettins/scotsoun/index.astro b/src/pages/[locale]/furthsettins/scotsoun/index.astro index ed9490c..bace876 100644 --- a/src/pages/[locale]/furthsettins/scotsoun/index.astro +++ b/src/pages/[locale]/furthsettins/scotsoun/index.astro @@ -15,7 +15,7 @@ const t = translate(locale); --- <Page title={t(tPage, { key: 'title' })}> - <section class="section--full-width"> + <section> <h1>Scotsoun</h1> <ScotsounCdGallery /> </section> |
