summary refs log tree commit diff stats
path: root/handlers/shopping_list.go
diff options
context:
space:
mode:
Diffstat (limited to 'handlers/shopping_list.go')
-rw-r--r--handlers/shopping_list.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/handlers/shopping_list.go b/handlers/shopping_list.go
new file mode 100644
index 0000000..af07954
--- /dev/null
+++ b/handlers/shopping_list.go
@@ -0,0 +1,13 @@
+package shopping_list
+
+import (
+	"net/http"
+
+	"github.com/gin-gonic/gin"
+)
+
+func LoadElements(c *gin.Context) {
+	c.HTML(http.StatusOK, "template.html", gin.H{
+		"Name": "Shopping List",
+	})
+}