2018-06-25 23:05:18 +02:00
|
|
|
{{define "user_home"}}<!DOCTYPE html>
|
|
|
|
<html>
|
2017-11-10 12:39:55 +01:00
|
|
|
<head>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "meta_tags" .Username}}
|
|
|
|
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
2017-11-10 12:39:55 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id='body' class="body">
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "menu" .}}
|
|
|
|
<h1>Welcome home, {{.Username}}!</h1>
|
2017-11-10 12:39:55 +01:00
|
|
|
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "footer"}}
|
|
|
|
</div>
|
|
|
|
{{template "analytics"}}
|
2017-11-10 12:39:55 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{end}}
|