🏷️ Added Files property for Page and Site

This commit is contained in:
Maxim Lebedev 2023-11-09 06:47:18 +06:00
parent 2cf99dcba1
commit 43e96e2095
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
2 changed files with 2 additions and 0 deletions

View File

@ -7,4 +7,5 @@ type Page struct {
Params map[string]any
Title string
Content []byte
Files []*File
}

View File

@ -11,4 +11,5 @@ type Site struct {
TimeZone *time.Location
Params map[string]any
Title string
Files []*File
}