hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit b5a3aa7082135d0a573f4fbb00f798e26b67b902
parent 3d5928889ad74ff88b80354b791e3a4dfb84f278
Author: openscript <1105080+openscript@users.noreply.github.com>
Date:   Mon, 25 Jun 2018 11:38:44 +0200

Add html doctype to baseof.html template for new themes

Diffstat:
Mcommands/new_theme.go | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/commands/new_theme.go b/commands/new_theme.go
@@ -80,7 +80,8 @@ func (n *newThemeCmd) newTheme(cmd *cobra.Command, args []string) error {
 	touchFile(cfg.Fs.Source, createpath, "layouts", "_default", "list.html")
 	touchFile(cfg.Fs.Source, createpath, "layouts", "_default", "single.html")
 
-	baseofDefault := []byte(`<html>
+	baseofDefault := []byte(`<!DOCTYPE html>
+<html>
     {{- partial "head.html" . -}}
     <body>
         {{- partial "header.html" . -}}