mirror of
https://git.shipoclu.com/moon/plspace.git
synced 2026-08-13 02:42:30 +00:00
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- Vite rewrites this to the fingerprinted asset at build time. -->
|
|
<link rel="icon" type="image/webp" href="/src/assets/plspace-logo.webp" />
|
|
<!-- The theme store replaces this with the user's saved choice on boot;
|
|
declaring light here avoids a dark-mode flash before it runs. -->
|
|
<meta name="color-scheme" content="light" />
|
|
<title>plspace | it's always Pleroma</title>
|
|
<meta name="description" content="A MySpace-flavored web client for Pleroma." />
|
|
<!--
|
|
Style hook: anything a user drops in here (or in a <style> tag they inject
|
|
at runtime) wins over the shipped theme, because the app's own stylesheet
|
|
is emitted before this point in the cascade and uses single-class
|
|
selectors only. See src/styles/README.md for the class contract.
|
|
-->
|
|
<style id="user-stylesheet"></style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|