Files
5chan/index.html
T

87 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="referrer" content="no-referrer" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.ico?variant=nsfw" />
<link rel="shortcut icon" type="image/png" sizes="16x16" href="/favicon.ico?variant=nsfw" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="5chan is a free, open-source, decentralized imageboard built on the Bitsocial protocol. No servers, no admins — all content is shared peer-to-peer via IPFS." />
<meta name="author" content="bitsocialnet" />
<link rel="canonical" href="https://5chan.app/" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<!-- OpenGraph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="5chan" />
<meta property="og:title" content="5chan — Decentralized Imageboard" />
<meta property="og:description" content="Free, open-source, serverless imageboard built on the Bitsocial protocol. No servers, no admins — peer-to-peer via IPFS." />
<meta property="og:url" content="https://5chan.app/" />
<meta property="og:image" content="https://5chan.app/manifest-icon-512x512.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="5chan — Decentralized Imageboard" />
<meta name="twitter:description" content="Free, open-source, serverless imageboard built on the Bitsocial protocol. Peer-to-peer via IPFS." />
<meta name="twitter:image" content="https://5chan.app/manifest-icon-512x512.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "5chan",
"url": "https://5chan.app/",
"description": "Free, open-source, decentralized imageboard built on the Bitsocial protocol. No servers, no admins — all content is shared peer-to-peer via IPFS.",
"applicationCategory": "SocialNetworkingApplication",
"operatingSystem": "Any",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"author": {
"@type": "Organization",
"name": "bitsocialnet",
"url": "https://github.com/bitsocialnet"
},
"license": "https://www.gnu.org/licenses/gpl-3.0-standalone.html",
"sourceOrganization": {
"@type": "Organization",
"name": "bitsocialnet",
"url": "https://github.com/bitsocialnet"
},
"isAccessibleForFree": true,
"codeRepository": "https://github.com/bitsocialnet/5chan"
}
</script>
<title>5chan — Decentralized Imageboard</title>
<!-- React Grab: toolbar activation only; keyboard shortcut disabled to avoid copy/paste conflicts (dev only) -->
<script type="module">
if (import.meta.env.DEV) {
import("react-grab/core").then((m) => {
const api = m.init({ activationKey: () => false });
window.__REACT_GRAB__ = api;
window.dispatchEvent(new CustomEvent("react-grab:init", { detail: api }));
});
}
</script>
<!-- Normalize path-based URLs before HashRouter starts. -->
<script>
if (
window.location.protocol !== 'file:' &&
window.location.pathname &&
window.location.pathname !== '/' &&
!window.location.pathname.endsWith('/index.html') &&
!window.location.hash
) {
window.location.replace('/#' + window.location.pathname + window.location.search);
}
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>