commands: Create default archetype on new site
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 22 Jun 2017 18:39:55 +0000 (20:39 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 22 Jun 2017 20:00:42 +0000 (22:00 +0200)
See #3626

commands/new.go
create/content_template_handler.go

index a7243c0a64d5f6a7169bf7ca5441e82acb26f969..de922fc0d5919eb37a90cb0a48e101c8a3809b05 100644 (file)
@@ -152,10 +152,11 @@ func NewContent(cmd *cobra.Command, args []string) error {
 }
 
 func doNewSite(fs *hugofs.Fs, basepath string, force bool) error {
+       archeTypePath := filepath.Join(basepath, "archetypes")
        dirs := []string{
                filepath.Join(basepath, "layouts"),
                filepath.Join(basepath, "content"),
-               filepath.Join(basepath, "archetypes"),
+               archeTypePath,
                filepath.Join(basepath, "static"),
                filepath.Join(basepath, "data"),
                filepath.Join(basepath, "themes"),
@@ -190,6 +191,10 @@ func doNewSite(fs *hugofs.Fs, basepath string, force bool) error {
 
        createConfig(fs, basepath, configFormat)
 
+       // Create a defaul archetype file.
+       helpers.SafeWriteToDisk(filepath.Join(archeTypePath, "default.md"),
+               strings.NewReader(create.ArchetypeTemplateTemplate), fs.Source)
+
        jww.FEEDBACK.Printf("Congratulations! Your new Hugo site is created in %s.\n\n", basepath)
        jww.FEEDBACK.Println(nextStepsText())
 
index d8c1fc71cbc3b3f783d4dcbc3f9748e001c75c3b..fbe062cba3d48d1e172476f62b08cf55a09277eb 100644 (file)
@@ -48,11 +48,13 @@ type ArchetypeFileData struct {
 }
 
 const (
-       archetypeTemplateTemplate = `---
+       ArchetypeTemplateTemplate = `---
 title: "{{ replace .TranslationBaseName "-" " " | title }}"
 date: {{ .Date }}
 draft: true
----`
+---
+
+`
 )
 
 func executeArcheTypeAsTemplate(s *hugolib.Site, kind, targetPath, archetypeFilename string) ([]byte, error) {
@@ -75,7 +77,7 @@ func executeArcheTypeAsTemplate(s *hugolib.Site, kind, targetPath, archetypeFile
 
        if archetypeFilename == "" {
                // TODO(bep) archetype revive the issue about wrong tpl funcs arg order
-               archetypeTemplate = []byte(archetypeTemplateTemplate)
+               archetypeTemplate = []byte(ArchetypeTemplateTemplate)
        } else {
                archetypeTemplate, err = afero.ReadFile(s.Fs.Source, archetypeFilename)
                if err != nil {
@@ -105,7 +107,7 @@ func executeArcheTypeAsTemplate(s *hugolib.Site, kind, targetPath, archetypeFile
                s.Log.FEEDBACK.Println(fmt.Sprintf(`WARNING: date and/or title missing from archetype file %q. 
 From Hugo 0.24 this must be provided in the archetype file itself, if needed. Example:
 %s
-`, archetypeFilename, archetypeTemplateTemplate))
+`, archetypeFilename, ArchetypeTemplateTemplate))
 
        }