37 lines
949 B
HTML
37 lines
949 B
HTML
{{define "home"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{template "meta_tags" "Free file sharing service"}}
|
|
{{template "user_style" .}}
|
|
<style>
|
|
/* 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;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
window.api_endpoint = '{{.APIEndpoint}}';
|
|
window.user = {{.User}};
|
|
</script>
|
|
<link rel='stylesheet' href='/res/svelte/home_page.css?v{{.CacheID}}'>
|
|
<script defer src='/res/svelte/home_page.js?v{{.CacheID}}'></script>
|
|
</head>
|
|
<body>
|
|
{{template "page_top" .}}
|
|
|
|
<div id="page_content" class="page_content"></div>
|
|
|
|
{{template "page_bottom" .}}
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|