This commit is contained in:
2025-10-14 11:25:11 +04:00
parent 5d4fe2fa2f
commit 25eb9bbb86
13 changed files with 215 additions and 311 deletions

View File

@@ -0,0 +1,17 @@
module site
@[heap]
pub struct Site {
pub mut:
pages []Page
sections []Section
siteconfig SiteConfig
}
pub struct Section {
pub mut:
name string
position int
path string
label string
}