Files
2026-07-13 12:26:32 +08:00

23 lines
984 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RunCat 365 — Privacy Policy</title>
<meta name="author" content="Kyome22" />
<meta name="description" content="RunCat 365 Privacy Policy" />
<link href="https://fonts.googleapis.com/css?family=Exo+2:400,400i,600,600i,700,700i" rel="stylesheet" />
<link rel="stylesheet" href="./style.css" />
</head>
<body class="privacy-policy">
<div id="content"></div>
<script type="module">
import { loadMarkdown } from "https://hacknock.github.io/lobsterjs/lobster.js";
const language = new URLSearchParams(location.search).get("lang") === "ja" ? "ja" : "en";
document.documentElement.lang = language;
const source = language === "ja" ? "./privacy_policy.ja.md" : "./privacy_policy.md";
loadMarkdown(source, document.getElementById("content"));
</script>
</body>
</html>