Files
fnx_web/res/template/home.html

21 lines
466 B
HTML
Raw Normal View History

2017-11-10 12:39:55 +01:00
{{define "home"}}
<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2017-11-10 12:39:55 +01:00
<head>
{{template "meta_tags" "Free file sharing service"}}
2022-06-07 14:43:01 +02:00
<script>
window.api_endpoint = '{{.APIEndpoint}}';
2021-10-31 17:38:05 +01:00
window.user = {{.User}};
2022-10-11 14:21:06 +02:00
window.server_hostname = "{{.Hostname}}";
</script>
2022-10-11 14:42:24 +02:00
<script defer src='/res/svelte/home_page.js?v{{cacheID}}'></script>
2017-11-10 12:39:55 +01:00
</head>
<body>
2022-10-11 14:21:06 +02:00
{{template "menu" .}}
<div id="page_body" class="page_body"></div>
2017-11-10 12:39:55 +01:00
{{template "analytics"}}
</body>
</html>
{{end}}