Move home page into svelte and remove some old junk

This commit is contained in:
2022-02-21 23:25:44 +01:00
parent e4e061869e
commit 692c96eb63
27 changed files with 1497 additions and 2564 deletions

View File

@@ -0,0 +1,17 @@
{{define "text_upload"}}
<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" "Text upload"}}
{{template "user_style" .}}
<script>
window.api_endpoint = '{{.APIEndpoint}}';
</script>
<link rel='stylesheet' href='/res/svelte/text_upload.css?v{{.CacheID}}'>
<script defer src='/res/svelte/text_upload.js?v{{.CacheID}}'></script>
</head>
<body id="body"></body>
{{template "analytics"}}
</html>
{{end}}