Renamed AppEmptyLayout to AppLayout
This commit is contained in:
parent
3347fb6b7c
commit
2c9a257286
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout>
|
<AppLayout>
|
||||||
<AppLayoutTitle title="Oh nyo..." />
|
<AppLayoutTitle title="Oh nyo..." />
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import AudioPlayer from "components/AudioPlayer.astro";
|
import AudioPlayer from "components/AudioPlayer.astro";
|
||||||
import Credits from "components/Credits.astro";
|
import Credits from "components/Credits.astro";
|
||||||
|
@ -71,7 +71,7 @@ const tagsAndAttributes = [
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
thumbnail,
|
thumbnail,
|
||||||
audio,
|
audio,
|
||||||
|
@ -97,7 +97,7 @@ const tagsAndAttributes = [
|
||||||
<DownloadButton href={url} filename={filename} />
|
<DownloadButton href={url} filename={filename} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import Lightbox from "components/Lightbox.astro";
|
import Lightbox from "components/Lightbox.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
import { payload } from "src/shared/payload/payload-sdk";
|
import { payload } from "src/shared/payload/payload-sdk";
|
||||||
|
@ -54,7 +54,7 @@ const tagsAndAttributes = [
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
thumbnail: image,
|
thumbnail: image,
|
||||||
description: description ? formatRichTextToString(description) : undefined,
|
description: description ? formatRichTextToString(description) : undefined,
|
||||||
|
@ -77,4 +77,4 @@ const tagsAndAttributes = [
|
||||||
tagGroups={tagsAndAttributes}
|
tagGroups={tagsAndAttributes}
|
||||||
credits={credits}
|
credits={credits}
|
||||||
/>
|
/>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
|
@ -21,7 +21,7 @@ const translation = getLocalizedMatch(translations);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
title: `${formatInlineTitle(translation)} (${t("collectibles.gallery")})`,
|
title: `${formatInlineTitle(translation)} (${t("collectibles.gallery")})`,
|
||||||
description: translation.description && formatRichTextToString(translation.description),
|
description: translation.description && formatRichTextToString(translation.description),
|
||||||
|
@ -45,7 +45,7 @@ const translation = getLocalizedMatch(translations);
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import TagGroups from "components/TagGroups.astro";
|
import TagGroups from "components/TagGroups.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
|
@ -49,7 +49,7 @@ const translation = getLocalizedMatch(translations);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
title: formatInlineTitle(translation),
|
title: formatInlineTitle(translation),
|
||||||
description: translation.description && formatRichTextToString(translation.description),
|
description: translation.description && formatRichTextToString(translation.description),
|
||||||
|
@ -127,7 +127,7 @@ const translation = getLocalizedMatch(translations);
|
||||||
|
|
||||||
{contents.length > 0 && <ContentsSection contents={contents} />}
|
{contents.length > 0 && <ContentsSection contents={contents} />}
|
||||||
</AsideLayout>
|
</AsideLayout>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import Lightbox from "components/Lightbox.astro";
|
import Lightbox from "components/Lightbox.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
import { payload } from "src/shared/payload/payload-sdk";
|
import { payload } from "src/shared/payload/payload-sdk";
|
||||||
|
@ -23,7 +23,7 @@ const translation = getLocalizedMatch(translations);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
title: `${formatInlineTitle(translation)} (${index})`,
|
title: `${formatInlineTitle(translation)} (${index})`,
|
||||||
description: translation.description && formatRichTextToString(translation.description),
|
description: translation.description && formatRichTextToString(translation.description),
|
||||||
|
@ -41,4 +41,4 @@ const translation = getLocalizedMatch(translations);
|
||||||
: undefined}
|
: undefined}
|
||||||
filename={image.filename}
|
filename={image.filename}
|
||||||
/>
|
/>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import Credits from "components/Credits.astro";
|
import Credits from "components/Credits.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
|
@ -39,7 +39,7 @@ const hasOutsideObi = obi ? Object.keys(obi).some((value) => !value.includes("in
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
title: `${formatInlineTitle(translation)} (${t("collectibles.scans")})`,
|
title: `${formatInlineTitle(translation)} (${t("collectibles.scans")})`,
|
||||||
description: translation.description && formatRichTextToString(translation.description),
|
description: translation.description && formatRichTextToString(translation.description),
|
||||||
|
@ -184,7 +184,7 @@ const hasOutsideObi = obi ? Object.keys(obi).some((value) => !value.includes("in
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout>
|
<AppLayout>
|
||||||
<AppLayoutTitle pretitle="Guide to" title="Rich Text Editor" />
|
<AppLayoutTitle pretitle="Guide to" title="Rich Text Editor" />
|
||||||
<AppLayoutDescription
|
<AppLayoutDescription
|
||||||
description="Having troubles using the Rich Text Editor? Looking for tips and advanced techniques? You've come to the right place!"
|
description="Having troubles using the Rich Text Editor? Looking for tips and advanced techniques? You've come to the right place!"
|
||||||
|
@ -32,7 +32,7 @@ import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro
|
||||||
</kbd> to create a linebreak.
|
</kbd> to create a linebreak.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ import { formatRichTextToString } from "src/utils/format";
|
||||||
import ImagePreview from "components/Previews/ImagePreview.astro";
|
import ImagePreview from "components/Previews/ImagePreview.astro";
|
||||||
import AudioPreview from "components/Previews/AudioPreview.astro";
|
import AudioPreview from "components/Previews/AudioPreview.astro";
|
||||||
import VideoPreview from "components/Previews/VideoPreview.astro";
|
import VideoPreview from "components/Previews/VideoPreview.astro";
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ const meta = getLocalizedMatch(folder.translations);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
title: meta.name,
|
title: meta.name,
|
||||||
description: meta.description && formatRichTextToString(meta.description),
|
description: meta.description && formatRichTextToString(meta.description),
|
||||||
|
@ -91,7 +91,7 @@ const meta = getLocalizedMatch(folder.translations);
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import Lightbox from "components/Lightbox.astro";
|
import Lightbox from "components/Lightbox.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
import { payload } from "src/shared/payload/payload-sdk";
|
import { payload } from "src/shared/payload/payload-sdk";
|
||||||
|
@ -49,7 +49,7 @@ const tagsAndAttributes = [
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
thumbnail: image,
|
thumbnail: image,
|
||||||
description: description ? formatRichTextToString(description) : undefined,
|
description: description ? formatRichTextToString(description) : undefined,
|
||||||
|
@ -65,4 +65,4 @@ const tagsAndAttributes = [
|
||||||
tagGroups={tagsAndAttributes}
|
tagGroups={tagsAndAttributes}
|
||||||
credits={credits}
|
credits={credits}
|
||||||
/>
|
/>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
|
@ -6,7 +6,7 @@ import ChronicleCard from "./_components/ChronicleCard.astro";
|
||||||
import LinkCard from "./_components/LinkCard.astro";
|
import LinkCard from "./_components/LinkCard.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
import { cache } from "src/utils/cachedPayload";
|
import { cache } from "src/utils/cachedPayload";
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
import AppLayoutDescription from "components/AppLayout/components/AppLayoutDescription.astro";
|
||||||
|
|
||||||
const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
||||||
|
@ -14,7 +14,7 @@ const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{ title: t("home.title") }}
|
openGraph={{ title: t("home.title") }}
|
||||||
backgroundImage={{
|
backgroundImage={{
|
||||||
url: "/img/background-image.webp",
|
url: "/img/background-image.webp",
|
||||||
|
@ -179,7 +179,7 @@ const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
import Page from "src/pages/[locale]/api/pages/partial.astro";
|
import Page from "src/pages/[locale]/api/pages/partial.astro";
|
||||||
import { payload } from "src/shared/payload/payload-sdk";
|
import { payload } from "src/shared/payload/payload-sdk";
|
||||||
|
@ -19,7 +19,7 @@ const meta = getLocalizedMatch(page.translations);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
title: formatInlineTitle(meta),
|
title: formatInlineTitle(meta),
|
||||||
description: meta.summary && formatRichTextToString(meta.summary),
|
description: meta.summary && formatRichTextToString(meta.summary),
|
||||||
|
@ -28,4 +28,4 @@ const meta = getLocalizedMatch(page.translations);
|
||||||
parentPages={page.parentPages}
|
parentPages={page.parentPages}
|
||||||
backgroundImage={page.backgroundImage ?? page.thumbnail}>
|
backgroundImage={page.backgroundImage ?? page.thumbnail}>
|
||||||
<Page slug={page.slug} lang={Astro.locals.currentLocale} page={page} />
|
<Page slug={page.slug} lang={Astro.locals.currentLocale} page={page} />
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
import { cache } from "src/utils/cachedPayload";
|
import { cache } from "src/utils/cachedPayload";
|
||||||
|
@ -12,7 +12,7 @@ const { t } = await getI18n(currentLocale);
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout openGraph={{ title: t("settings.title") }}>
|
<AppLayout openGraph={{ title: t("settings.title") }}>
|
||||||
<AppLayoutTitle title={t("settings.title")} />
|
<AppLayoutTitle title={t("settings.title")} />
|
||||||
|
|
||||||
<div id="main">
|
<div id="main">
|
||||||
|
@ -69,7 +69,7 @@ const { t } = await getI18n(currentLocale);
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
import { payload } from "src/shared/payload/payload-sdk";
|
import { payload } from "src/shared/payload/payload-sdk";
|
||||||
import { groupBy } from "src/utils/array";
|
import { groupBy } from "src/utils/array";
|
||||||
import TimelineYear from "./_components/TimelineYear.astro";
|
import TimelineYear from "./_components/TimelineYear.astro";
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import Card from "components/Card.astro";
|
import Card from "components/Card.astro";
|
||||||
import { getI18n } from "src/i18n/i18n";
|
import { getI18n } from "src/i18n/i18n";
|
||||||
|
@ -18,7 +18,7 @@ const { getLocalizedUrl, t, formatTimelineDate } = await getI18n(Astro.locals.cu
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout>
|
<AppLayout>
|
||||||
<AppLayoutBackgroundImg
|
<AppLayoutBackgroundImg
|
||||||
img={{
|
img={{
|
||||||
url: "/img/timeline-background.webp",
|
url: "/img/timeline-background.webp",
|
||||||
|
@ -76,7 +76,7 @@ const { getLocalizedUrl, t, formatTimelineDate } = await getI18n(Astro.locals.cu
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
{groupedEvents.map(({ key, values }) => <TimelineYear year={key} events={values} />)}
|
{groupedEvents.map(({ key, values }) => <TimelineYear year={key} events={values} />)}
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import AppEmptyLayout from "components/AppLayout/AppEmptyLayout.astro";
|
import AppLayout from "components/AppLayout/AppLayout.astro";
|
||||||
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
import AppLayoutTitle from "components/AppLayout/components/AppLayoutTitle.astro";
|
||||||
import Credits from "components/Credits.astro";
|
import Credits from "components/Credits.astro";
|
||||||
import DownloadButton from "components/DownloadButton.astro";
|
import DownloadButton from "components/DownloadButton.astro";
|
||||||
|
@ -70,7 +70,7 @@ const tagsAndAttributes = [
|
||||||
|
|
||||||
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
||||||
|
|
||||||
<AppEmptyLayout
|
<AppLayout
|
||||||
openGraph={{
|
openGraph={{
|
||||||
thumbnail,
|
thumbnail,
|
||||||
video,
|
video,
|
||||||
|
@ -96,7 +96,7 @@ const tagsAndAttributes = [
|
||||||
<DownloadButton href={url} filename={filename} />
|
<DownloadButton href={url} filename={filename} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</AppEmptyLayout>
|
</AppLayout>
|
||||||
|
|
||||||
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
{/* ------------------------------------------- CSS -------------------------------------------- */}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue