liberty-hu/public/index.html

26 lines
730 B
HTML
Raw Normal View History

2023-08-18 11:02:12 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer" />
<title>Liberty Hu!</title>
2023-08-18 11:02:12 +02:00
<link rel="stylesheet" href="./css/app.css" />
</head>
<body>
2023-08-30 09:46:55 +02:00
<noscript>
<p>You need to enable JavaScript to run this frontend.</p>
<p>Check out no Javascript frontend:</p>
<li>/hp/:id</li>
</noscript>
2023-09-01 05:25:26 +02:00
<div id="app" classs="bg-gray-900">
<div class="flex flex-col items-center justify-center h-screen">
<div class="loading"></div>
<p>Loading</p>
</div>
</div>
2023-08-18 11:02:12 +02:00
<script src="/js/main.js"></script>
</body>
</html>