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>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "meta_tags" "Free file sharing service"}}
|
2022-06-07 14:43:01 +02:00
|
|
|
|
2021-08-24 09:57:57 +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}}";
|
2021-08-24 09:57:57 +02:00
|
|
|
</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}}
|