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"}}
|
2019-02-18 13:37:41 +01:00
|
|
|
{{template "user_style" .}}
|
2020-01-14 17:10:03 +01:00
|
|
|
<style>
|
2022-02-21 21:53:58 +01:00
|
|
|
/* Override the default background with something spectacular */
|
|
|
|
header, footer, .checkers {
|
|
|
|
background-image: url("/res/img/horsehead.webp");
|
|
|
|
background-color: var(--layer_1_color);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-blend-mode: luminosity;
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
2022-02-26 15:36:35 +01:00
|
|
|
color: var(--layer_1_text_color);
|
2022-02-21 21:53:58 +01:00
|
|
|
}
|
2020-01-14 17:10:03 +01:00
|
|
|
</style>
|
2021-06-22 17:14:21 +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}};
|
2021-08-24 09:57:57 +02:00
|
|
|
</script>
|
2021-11-29 16:13:19 +01:00
|
|
|
<link rel='stylesheet' href='/res/svelte/home_page.css?v{{.CacheID}}'>
|
|
|
|
<script defer src='/res/svelte/home_page.js?v{{.CacheID}}'></script>
|
2017-11-10 12:39:55 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-09-16 23:50:57 +02:00
|
|
|
{{template "page_top" .}}
|
2021-12-03 17:47:11 +01:00
|
|
|
|
2022-02-21 23:25:44 +01:00
|
|
|
<div id="page_content" class="page_content"></div>
|
2020-08-11 19:52:03 +02:00
|
|
|
|
2020-01-31 19:16:20 +01:00
|
|
|
{{template "page_bottom" .}}
|
2017-11-10 12:39:55 +01:00
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|