create: Provide the correct .Site object to archetype templates
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 25 May 2018 15:35:06 +0000 (17:35 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 25 May 2018 15:35:06 +0000 (17:35 +0200)
Fixes #4732

create/content_template_handler.go

index e9e7cb62b4f331dd3141fa757b5f0739001d2432..17e52cae078430c3d62be2b75a6b89c7684f2489 100644 (file)
@@ -42,7 +42,7 @@ type ArchetypeFileData struct {
        // used in the archetype template. Also, if this is a multilingual setup,
        // this site is the site that best matches the target content file, based
        // on the presence of language code in the filename.
-       Site *hugolib.Site
+       Site *hugolib.SiteInfo
 
        // Name will in most cases be the same as TranslationBaseName, e.g. "my-post".
        // But if that value is "index" (bundles), the Name is instead the owning folder.
@@ -108,7 +108,7 @@ func executeArcheTypeAsTemplate(s *hugolib.Site, kind, targetPath, archetypeFile
                Date: time.Now().Format(time.RFC3339),
                Name: name,
                File: f,
-               Site: s,
+               Site: &s.Info,
        }
 
        if archetypeFilename == "" {