2018-06-25 23:05:18 +02:00
|
|
|
{{define "user_home"}}<!DOCTYPE html>
|
2020-01-17 20:32:21 +01:00
|
|
|
<html lang="en">
|
2017-11-10 12:39:55 +01:00
|
|
|
<head>
|
2021-10-26 22:15:01 +02:00
|
|
|
{{template "meta_tags" .User.Username }}
|
|
|
|
{{template "user_style" . }}
|
|
|
|
{{template "user_style_js" . }}
|
2021-09-23 22:21:27 +02:00
|
|
|
|
2021-09-07 17:09:52 +02:00
|
|
|
<script>
|
2021-09-23 22:21:27 +02:00
|
|
|
window.api_endpoint = '{{.APIEndpoint}}';
|
2021-09-07 17:09:52 +02:00
|
|
|
window.user = {{.User}};
|
|
|
|
</script>
|
2021-11-22 22:47:17 +01:00
|
|
|
<link rel='stylesheet' href='/res/svelte/user_home.css?v1'>
|
|
|
|
<script defer src='/res/svelte/user_home.js?v1'></script>
|
2017-11-10 12:39:55 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-09-16 23:50:57 +02:00
|
|
|
{{template "page_top" .}}
|
2019-02-18 22:42:20 +01:00
|
|
|
|
2020-06-07 21:12:48 +02:00
|
|
|
<h1>Welcome home, {{.User.Username}}!</h1>
|
2019-02-25 22:53:09 +01:00
|
|
|
|
2021-09-23 22:21:27 +02:00
|
|
|
<div id="page_content" class="page_content"></div>
|
2019-09-16 23:50:57 +02:00
|
|
|
|
|
|
|
{{template "page_bottom" .}}
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "analytics"}}
|
2017-11-10 12:39:55 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{end}}
|