2022-02-21 21:55:09 +01:00
|
|
|
{{define "directory_upload"}}<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{{template "meta_tags" "Directory upload"}}
|
|
|
|
|
|
|
|
<script>
|
|
|
|
window.api_endpoint = '{{.APIEndpoint}}';
|
|
|
|
window.user = {{.User}};
|
|
|
|
</script>
|
2022-10-11 14:42:24 +02:00
|
|
|
<link rel='stylesheet' href='/res/svelte/directory_upload.css?v{{cacheID}}'>
|
|
|
|
<script defer src='/res/svelte/directory_upload.js?v{{cacheID}}'></script>
|
2022-02-21 21:55:09 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{{template "page_top" .}}
|
|
|
|
|
2022-10-11 14:21:06 +02:00
|
|
|
<header>
|
|
|
|
<h1>Directory upload</h1>
|
|
|
|
</header>
|
2022-02-21 21:55:09 +01:00
|
|
|
<div id="page_content" class="page_content"></div>
|
|
|
|
|
|
|
|
{{template "page_bottom" .}}
|
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|