diff --git a/create/content_template_handler.go b/create/content_template_handler.go index 99f2d1fa..705efbd2 100644 --- a/create/content_template_handler.go +++ b/create/content_template_handler.go @@ -137,15 +137,6 @@ func executeArcheTypeAsTemplate(s *hugolib.Site, kind, targetPath, archetypeFile archetypeContent = []byte(archetypeShortcodeReplacementsPost.Replace(buff.String())) - if !bytes.Contains(archetypeContent, []byte("date")) || !bytes.Contains(archetypeContent, []byte("title")) { - // TODO(bep) remove some time in the future. - 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)) - - } - return archetypeContent, nil }