This repository has been archived on 2024-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
admin/templates/home.html

18 lines
432 B
HTML
Raw Normal View History

2022-01-26 17:00:13 +00:00
<!DOCTYPE html>
<html>
2022-01-27 20:21:09 +00:00
2022-01-26 17:00:13 +00:00
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
2022-01-27 20:21:09 +00:00
<title>{{.Server.Name}} Admin Panel</title>
2022-01-26 17:00:13 +00:00
<meta name='viewport' content='width=device-width, initial-scale=1'>
2022-01-27 20:21:09 +00:00
<link rel='stylesheet' type='text/css' media='screen' href='/resources/main.css'>
2022-01-26 17:00:13 +00:00
</head>
2022-01-27 20:21:09 +00:00
2022-01-26 17:00:13 +00:00
<body>
2022-01-27 20:21:09 +00:00
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
2022-01-26 17:00:13 +00:00
</body>
2022-01-27 20:21:09 +00:00
2022-01-26 17:00:13 +00:00
</html>