Files
fnx_web/res/template/home.html

38 lines
986 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"}}
{{template "user_style" .}}
2020-01-14 17:10:03 +01:00
<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;
2022-02-26 15:36:35 +01:00
color: var(--layer_1_text_color);
}
2020-01-14 17:10:03 +01:00
</style>
2021-06-22 17:14:21 +02:00
<script>
window.api_endpoint = '{{.APIEndpoint}}';
2021-10-31 17:38:05 +01:00
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>
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
<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}}