aboutsummaryrefslogtreecommitdiffstats
path: root/site.go
diff options
context:
space:
mode:
authorEddy Pedroni <eddy@0xf7.com>2020-02-03 23:28:11 +0100
committerEddy Pedroni <eddy@0xf7.com>2020-02-03 23:28:11 +0100
commit49c7201fa68be19b824265615364337a181b1fd7 (patch)
tree86c9797c7b9052bea5eaaa98059b7783a1590dff /site.go
parente2163d9815c8043d414bfa393f8e83d34fb70a46 (diff)
Fixed first bug
Diffstat (limited to 'site.go')
-rw-r--r--site.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/site.go b/site.go
index 1d0358f..436ce34 100644
--- a/site.go
+++ b/site.go
@@ -10,7 +10,6 @@ type siteData struct {
name string
rawName string
baseUrl string
- outputPath string
sourcePath string
pages map[string]page
nav []navItem
@@ -27,8 +26,7 @@ func getSites(cfg config) (sites []siteData) {
newSite := siteData{
name: nameify(f.Name()),
rawName: f.Name(),
- baseUrl: filepath.Join(cfg.BaseUrl, f.Name()),
- outputPath: filepath.Join(cfg.TargetDir, f.Name()),
+ baseUrl: cfg.BaseUrl + "/" + f.Name(),
sourcePath: filepath.Join(cfg.DocsRoot, f.Name())}
sites = append(sites, newSite)
}