diff --git a/source/pages/interlinked.astro b/source/pages/interlinked.astro new file mode 100644 index 0000000..03e0554 --- /dev/null +++ b/source/pages/interlinked.astro @@ -0,0 +1,36 @@ +--- +import BaseLayout, {type Props as BaseProps} from "../layouts/base.astro"; +import InterlinkedImage from "../components/interlinked-image.astro"; +import "../scss/interlinked.scss"; +import interlinkedImages from "../public/interlinked/images.json"; + +const props: BaseProps = { + frontmatter: { + pageTitle: "Interlinked - driftingnebula", + }, +}; +--- + + + + +
+

Interlinked

+

Fully reproducible images with all the operations available.

+ { + interlinkedImages.interlinked.map((file) => ( + + )) + } + +

Numbered

+

Old images I didn't write the operations down for.

+ { + interlinkedImages.numbered.map((file) => ( + + )) + } +
+
diff --git a/source/scss/interlinked.scss b/source/scss/interlinked.scss new file mode 100644 index 0000000..f15cce1 --- /dev/null +++ b/source/scss/interlinked.scss @@ -0,0 +1,11 @@ +.page-header { + border-bottom: 4px solid white; + padding: var(--spacing-3); +} + +.page-main { + display: flex; + flex-direction: column; + gap: var(--spacing-3); + padding: var(--spacing-3); +}