aboutsummaryrefslogtreecommitdiff
path: root/renderer.go
diff options
context:
space:
mode:
Diffstat (limited to 'renderer.go')
-rw-r--r--renderer.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/renderer.go b/renderer.go
index 5471158..3379233 100644
--- a/renderer.go
+++ b/renderer.go
@@ -5,7 +5,9 @@ import (
"html/template"
"io"
"io/ioutil"
+ "net/url"
"os"
+ "strings"
"github.com/labstack/echo/v4"
)
@@ -14,7 +16,8 @@ const themesDir = "themes"
// GlobalRenderData contains data available in all templates.
type GlobalRenderData struct {
- Path string
+ Path []string
+ URL *url.URL
LoggedIn bool
@@ -71,7 +74,8 @@ func NewBaseRenderData(ctx *Context) *BaseRenderData {
global.Username = ctx.Session.username
}
- global.Path = ctx.Request().URL.String()
+ global.URL = ctx.Request().URL
+ global.Path = strings.Split(global.URL.Path, "/")[1:]
return &BaseRenderData{
GlobalData: global,