monofile/pages/index.html

56 lines
1.3 KiB
HTML
Raw Normal View History

2023-02-26 12:37:02 -08:00
<!--
for some reason (don't know why)
certain things break
when not in quirks mode
so i'm not adding in the
doctype html
-->
2023-02-26 10:47:03 -08:00
<html lang="en">
<head>
<link
rel="stylesheet"
href="/static/style/app.css"
>
2023-10-14 14:21:21 -07:00
<link
rel="apple-touch-icon"
href="/static/assets/apple-touch-icon.png"
>
2023-02-26 10:47:03 -08:00
<link
rel="icon"
2023-02-27 20:11:25 -08:00
type="image/svg"
2023-10-13 17:08:51 -07:00
href="/static/assets/icons/icon.svg"
2023-02-26 10:47:03 -08:00
>
2023-05-11 17:59:49 -07:00
<link
rel="stylesheet"
href="/auth/customCSS"
>
2023-02-26 10:47:03 -08:00
<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>
2023-02-26 11:23:40 -08:00
<meta name="title" content="monofile">
2023-02-27 21:12:17 -08:00
<meta name="description" content="The open-source Discord-based file sharing service">
<meta name="theme-color" content="rgb(30, 33, 36)">
2023-10-15 16:35:16 -07:00
<meta name="twitter:card" content="summary_large_image">
2023-10-15 16:41:59 -07:00
<meta name="image" content="/static/assets/banner.png">
<meta name="og:image" content="/static/assets/banner.png">
2023-02-26 11:23:40 -08:00
2023-02-26 10:47:03 -08:00
</head>
<body>
</body>
2023-10-13 17:08:51 -07:00
</html>