From 742287e522df2abfda23ead0f0f63be80b66098d Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Thu, 6 Mar 2025 16:56:21 -0300 Subject: [PATCH] feat: dashboard template --- templates/dashboard.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/dashboard.html diff --git a/templates/dashboard.html b/templates/dashboard.html new file mode 100644 index 0000000..6315ee0 --- /dev/null +++ b/templates/dashboard.html @@ -0,0 +1,15 @@ +{{define "dashboard"}} +{{template "layout-page-start" (args "Title" "Dashboard")}} +
+ {{if .Projects}} +

Projects

+ {{else}} +
+ +
+ {{end}} +
+{{template "layout-page-end"}} +{{end}}