Files
herolib/lib/web/site/model_site.v
2025-11-28 09:01:58 +01:00

10 lines
175 B
V

module site
@[heap]
pub struct Site {
pub mut:
pages map[string]Page // key: is the id of the page
nav NavConfig //navigation of the site
siteconfig SiteConfig
}