Create themes folder on init

This commit is contained in:
Vincent Prouillet 2017-08-25 08:43:54 +09:00
parent 262ff5ec00
commit 699ffb07ce

View file

@ -49,6 +49,7 @@ pub fn create_new_project(name: &str) -> Result<()> {
create_dir(path.join("content"))?;
create_dir(path.join("templates"))?;
create_dir(path.join("static"))?;
create_dir(path.join("themes"))?;
if compile_sass {
create_dir(path.join("sass"))?;
}