mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-22 05:46:26 -08:00
48 lines
1 KiB
HTML
48 lines
1 KiB
HTML
<!--
|
|
for some reason (don't know why)
|
|
certain things break
|
|
when not in quirks mode
|
|
so i'm not adding in the
|
|
doctype html
|
|
-->
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="/static/style/app.css"
|
|
>
|
|
|
|
<link
|
|
rel="icon"
|
|
type="image/svg"
|
|
href="/static/assets/icons/icon.svg"
|
|
>
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="/auth/customCSS"
|
|
>
|
|
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, user-scalable=0"
|
|
>
|
|
|
|
<script type="module" src="/static/js/index.js"></script>
|
|
|
|
<title>monofile</title>
|
|
|
|
<meta name="title" content="monofile">
|
|
<meta name="description" content="The open-source Discord-based file sharing service">
|
|
<meta name="theme-color" content="rgb(30, 33, 36)">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
|
|
</html>
|