Files
fnx_web/res/template/directory_upload.html

27 lines
603 B
HTML
Raw Normal View History

{{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>
</head>
<body>
{{template "page_top" .}}
2022-10-11 14:21:06 +02:00
<header>
<h1>Directory upload</h1>
</header>
<div id="page_content" class="page_content"></div>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}