Files
fnx_web/res/template/account/user_home.html

28 lines
637 B
HTML
Raw Normal View History

{{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>
2020-06-07 21:12:48 +02:00
{{template "meta_tags" .User.Username}}
{{template "user_style" .}}
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}}';
window.highlight_color = '#{{.Style.HighlightColor.RGB}}';
2021-09-07 17:09:52 +02:00
window.user = {{.User}};
</script>
2021-09-23 22:21:27 +02:00
<link rel='stylesheet' href='/res/svelte/user_home.css'>
<script defer src='/res/svelte/user_home.js'></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>
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" .}}
{{template "analytics"}}
2017-11-10 12:39:55 +01:00
</body>
</html>
{{end}}