website/src/layouts/Home.astro

19 lines
441 B
Plaintext
Raw Normal View History

2023-04-07 23:06:46 +02:00
---
2023-04-09 00:58:09 +02:00
import ContactCard from "../components/cards/Contact.astro";
import NoticeCard from "../components/cards/Notice.astro";
import PhotoCard from "../components/cards/Photo.astro";
2023-04-07 23:06:46 +02:00
import Base from "./Base.astro";
---
<Base>
<main class="l-home">
<article class="l-home__article markdown readable">
<slot />
</article>
<aside class="l-home__aside">
2023-04-09 00:58:09 +02:00
<NoticeCard />
<PhotoCard />
<ContactCard />
2023-04-07 23:06:46 +02:00
</aside>
</main>
</Base>