46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
import type { Meta } from "#meta";
|
|
import "./index.css";
|
|
|
|
export const theme = {
|
|
bg: "#fff",
|
|
fg: "#666",
|
|
};
|
|
static const title = "paper clover";
|
|
static const description = "and then we knew, just like paper airplanes: that we could fly...";
|
|
export const meta: Meta = {
|
|
title,
|
|
description,
|
|
openGraph: {
|
|
title,
|
|
description,
|
|
type: "website",
|
|
url: "https://paperclover.net",
|
|
},
|
|
generator: "clover",
|
|
alternates: {
|
|
canonical: "https://paperclover.net",
|
|
types: {
|
|
"application/rss+xml": [
|
|
{ url: "rss.xml", title: "rss" },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
<main>
|
|
<div>
|
|
<h2>posts</h2>
|
|
<p>song: <span>in the summer</span> (coming soon, 2025-07-12)</p>
|
|
<p>song: <a href="/waterfalls">waterfalls</a> (2025-01-01)</p>
|
|
<h2>things</h2>
|
|
<p><a href="/q+a">questions and answers</a></p>
|
|
<p><a href="/file">file browser</a></p>
|
|
<p><a href="/subscribe">mailing list</a></p>
|
|
<p><a href="/donate">donate</a></p>
|
|
<p><a href="/rss.xml">rss feed</a></p>
|
|
<p style="position: relative; z-index: 10"><a href="/discord">discord</a></p>
|
|
<h1>
|
|
paper clover
|
|
</h1>
|
|
</div>
|
|
</main>
|