From f6fdfcd42917b6933628a58d5feac6b9a566caa9 Mon Sep 17 00:00:00 2001 From: inondle Date: Thu, 3 Dec 2015 17:32:12 -0800 Subject: [PATCH] Added 'themes' as a default new site directory Fixes #1507 --- commands/new.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/new.go b/commands/new.go index da2588fb4..56584260d 100644 --- a/commands/new.go +++ b/commands/new.go @@ -112,6 +112,7 @@ func doNewSite(basepath string, force bool) error { filepath.Join(basepath, "archetypes"), filepath.Join(basepath, "static"), filepath.Join(basepath, "data"), + filepath.Join(basepath, "themes"), } if exists, _ := helpers.Exists(basepath, hugofs.SourceFs); exists {