13 lines
365 B
Plaintext
13 lines
365 B
Plaintext
---
|
|
import { getAllWebpages } from "@/content/pages/pages";
|
|
import { getAllAlbums } from "@/content/photos/albums";
|
|
import { getSettings } from "@/content/settings/settings"
|
|
import WebpageLayout from "@/layouts/WebpageLayout.astro";
|
|
|
|
const settings = await getSettings();
|
|
const webpages = await getAllWebpages();
|
|
---
|
|
|
|
<WebpageLayout>
|
|
<h1>Test</h1>
|
|
</WebpageLayout> |