]> Untitled Git - lemmy.git/blobdiff - ui/src/index.html
routes.api: fix get_captcha endpoint (#1135)
[lemmy.git] / ui / src / index.html
index 3f64c9a5d31bef0d621749fe344e02b60727631a..2c915196a72ed16fefa1d66df3398a5ca82e6004 100644 (file)
@@ -1,30 +1,34 @@
+<!DOCTYPE html>
 <html lang="en">
+  <head>
+    <!-- Required meta tags -->
+    <meta name="Description" content="Lemmy">
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 
-<head>
-       <!-- Required meta tags -->
-       <meta charset="utf-8">
-       <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-       <link rel="shortcut icon" type="image/svg+xml" href="/static/assets/favicon.svg" />
-       <link rel="apple-touch-icon" href="/static/assets/apple-touch-icon.png" />
+    <!-- Web app manifest -->
+    <link rel="manifest" href="/static/assets/manifest.webmanifest">
 
+    <!-- Icons -->
+    <link rel="shortcut icon" type="image/svg+xml" href="/static/assets/favicon.svg" />
+    <link rel="apple-touch-icon" href="/static/assets/apple-touch-icon.png" />
 
-       <title>Dofollow Links - Upvotocracy</title>
-       <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/balloon-css/0.5.0/balloon.min.css">
-  <script src="https://cdnjs.cloudflare.com/ajax/libs/sortable/0.8.0/js/sortable.min.js"></script>
-<!-- Global site tag (gtag.js) - Google Analytics -->
-       <script async src="https://www.googletagmanager.com/gtag/js?id=UA-2359053-86"></script>
-       <script>
-               window.dataLayer = window.dataLayer || [];
-               function gtag(){dataLayer.push(arguments);}
-               gtag('js', new Date());
+    <!-- Styles -->
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/tribute.css" />
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/toastify.css" />
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/choices.min.css" />
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/tippy.css" />
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/themes/litely.min.css" id="default-light" media="(prefers-color-scheme: light)" />
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/themes/darkly.min.css" id="default-dark" media="(prefers-color-scheme: no-preference), (prefers-color-scheme: dark)" />
+    <link rel="stylesheet" type="text/css" href="/static/assets/css/main.css" />
 
-               gtag('config', 'UA-2359053-86');
-       </script>
-</head>
-
-<body>
-       <div id="app"></div>
-       $bundles
-</body>
+    <!-- Scripts -->
+    <script async src="/static/assets/libs/sortable/sortable.min.js"></script>
+  </head>
 
+  <body>
+    <noscript>JavaScript is required for this page.</noscript>
+    <div id="app"></div>
+    $bundles
+  </body>
 </html>