diff options
author | FChannel <> | 2022-04-29 10:36:43 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 5b52d269faa2ce2014d0feba603a2122361cf4eb (patch) | |
tree | 0b66338d18add90ccd1d100ffe9bdb1eecc7319d /routes/structs.go | |
parent | 3db517715bef6a53225c5c3c06e8fc5fd0bf71e3 (diff) |
general layout organization
Diffstat (limited to 'routes/structs.go')
-rw-r--r-- | routes/structs.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/routes/structs.go b/routes/structs.go index c145a6d..8905e65 100644 --- a/routes/structs.go +++ b/routes/structs.go @@ -21,6 +21,7 @@ type PageData struct { ReturnTo string NewsItems []db.NewsItem BoardRemainer []int + Meta Meta Themes *[]string ThemeCookie string @@ -43,3 +44,10 @@ type AdminPage struct { Themes *[]string ThemeCookie string } + +type Meta struct { + Title string + Description string + Url string + Preview string +} |