mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-10-30 01:13:08 +00:00
Add FilePath and Weight field to pages
This commit is contained in:
parent
bd19f7da83
commit
2a9691f947
4
dir.go
4
dir.go
|
@ -29,7 +29,9 @@ type Dir struct {
|
|||
type Page struct {
|
||||
Title string
|
||||
Date time.Time
|
||||
Weight int
|
||||
Path string `yaml:"-"`
|
||||
FilePath string `yaml:"-"`
|
||||
Content string `yaml:"-"`
|
||||
Params map[string]string
|
||||
Prev *Page `yaml:"-"`
|
||||
|
@ -128,6 +130,8 @@ func (d *Dir) _read(srcDir, path string, task *Task, cfg *Config) error {
|
|||
}
|
||||
page.Content = string(content)
|
||||
|
||||
page.FilePath = path
|
||||
|
||||
if namePrefix == "_index" {
|
||||
page.Path = d.Path
|
||||
d.index = page
|
||||
|
|
Loading…
Reference in a new issue