feat(ui): custom HTML content in predefined locations (#2621)

This commit is contained in:
Aaron Liu
2025-07-15 10:44:51 +08:00
parent ca57ca1ba0
commit 000124f6c7
5 changed files with 22 additions and 1 deletions

View File

@@ -215,3 +215,9 @@ type CustomNavItem struct {
Name string `json:"name"`
URL string `json:"url"`
}
type CustomHTML struct {
HeadlessFooter string `json:"headless_footer,omitempty"`
HeadlessBody string `json:"headless_bottom,omitempty"`
SidebarBottom string `json:"sidebar_bottom,omitempty"`
}