Fix FullFilePath

Fixes #732
This commit is contained in:
bep
2015-05-31 18:54:50 +02:00
parent 3cee9b7786
commit be0903c71a
2 changed files with 10 additions and 5 deletions

View File

@@ -800,7 +800,7 @@ func (p *Page) Convert() error {
}
func (p *Page) FullFilePath() string {
return filepath.Join(p.Source.Dir(), p.Source.Path())
return filepath.Join(p.Dir(), p.LogicalName())
}
func (p *Page) TargetPath() (outfile string) {