mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-16 20:53:59 +02:00
Fixes #141: Wrong section in multi level structure
This commit is contained in:
@@ -6,6 +6,7 @@ import (
|
||||
"os"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
type Input interface {
|
||||
@@ -41,8 +42,11 @@ func (f *Filesystem) add(name string, reader io.Reader) (err error) {
|
||||
return err
|
||||
}
|
||||
|
||||
// section should be the first part of the path
|
||||
dir, logical := path.Split(name)
|
||||
_, section := path.Split(path.Dir(name))
|
||||
parts := strings.Split(dir, "/")
|
||||
section := parts[0]
|
||||
|
||||
if section == "." {
|
||||
section = ""
|
||||
}
|
||||
@@ -54,6 +58,7 @@ func (f *Filesystem) add(name string, reader io.Reader) (err error) {
|
||||
Section: section,
|
||||
Dir: dir,
|
||||
})
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user