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

19 lines
372 B
HTML
Raw Normal View History

{{define "user_home"}}<!DOCTYPE html>
<html>
2017-11-10 12:39:55 +01:00
<head>
{{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">
{{template "menu" .}}
<h1>Welcome home, {{.Username}}!</h1>
2017-11-10 12:39:55 +01:00
{{template "footer"}}
</div>
{{template "analytics"}}
2017-11-10 12:39:55 +01:00
</body>
</html>
{{end}}