diff options
Diffstat (limited to '')
-rw-r--r-- | templates/user/dashboard/dashboard.tmpl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl new file mode 100644 index 0000000..5dc46dc --- /dev/null +++ b/templates/user/dashboard/dashboard.tmpl @@ -0,0 +1,13 @@ +{{template "base/head" .}} +<div role="main" aria-label="{{.Title}}" class="page-content dashboard feeds"> + {{template "user/dashboard/navbar" .}} + <div class="ui container flex-container"> + <div class="flex-container-main"> + {{template "base/alert" .}} + {{template "user/heatmap" .}} + {{template "user/dashboard/feeds" .}} + </div> + {{template "user/dashboard/repolist" .}} + </div> +</div> +{{template "base/footer" .}} |