From 70ba7396ffc530961c31decb5f6cfb379a2ed2a4 Mon Sep 17 00:00:00 2001 From: "Serge A. Zaitsev" Date: Sun, 30 Aug 2015 15:50:03 +0200 Subject: [PATCH] removed default date value, added some default title/description/keywords for markdown --- zs.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zs.go b/zs.go index 534d516..a8d2c5a 100644 --- a/zs.go +++ b/zs.go @@ -35,9 +35,12 @@ func md(path string, globals Vars) (Vars, string, error) { s := string(b) url := path[:len(path)-len(filepath.Ext(path))] + ".html" v := Vars{ - "file": path, - "url": url, - "output": filepath.Join(PUBDIR, url), + "file": path, + "url": url, + "title": "", + "description": "", + "keywords": "", + "output": filepath.Join(PUBDIR, url), } if _, err := os.Stat(filepath.Join(ZSDIR, "layout.amber")); err == nil { v["layout"] = "layout.amber" @@ -45,9 +48,6 @@ func md(path string, globals Vars) (Vars, string, error) { v["layout"] = "layout.html" } - if info, err := os.Stat(path); err == nil { - v["date"] = info.ModTime().Format("02-01-2006") - } for name, value := range globals { v[name] = value } -- 2.43.0