summaryrefslogtreecommitdiffstats
path: root/commands/new.go
diff options
context:
space:
mode:
authorspf13 <steve.francia@gmail.com>2014-05-27 18:30:25 -0400
committerspf13 <steve.francia@gmail.com>2014-05-27 18:30:25 -0400
commitaeb06c7bcc12813bbad80761c8cdccb765ea443c (patch)
tree14ec5f946c33c33173c56ba18f916810e045f882 /commands/new.go
parent9173022ea7bff5885bb8cfde6f62fa4865b6a829 (diff)
Rename chrome to partials (in builder)
Diffstat (limited to 'commands/new.go')
-rw-r--r--commands/new.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/new.go b/commands/new.go
index 68ddbb4f6..75d83836b 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -142,14 +142,14 @@ func NewTheme(cmd *cobra.Command, args []string) {
}
mkdir(createpath, "layouts", "_default")
- mkdir(createpath, "layouts", "chrome")
+ mkdir(createpath, "layouts", "partials")
touchFile(createpath, "layouts", "index.html")
touchFile(createpath, "layouts", "_default", "list.html")
touchFile(createpath, "layouts", "_default", "single.html")
- touchFile(createpath, "layouts", "chrome", "header.html")
- touchFile(createpath, "layouts", "chrome", "footer.html")
+ touchFile(createpath, "layouts", "partials", "header.html")
+ touchFile(createpath, "layouts", "partials", "footer.html")
mkdir(createpath, "archetypes")
touchFile(createpath, "archetypes", "default.md")