removed default date value, added some default title/description/keywords for markdown

This commit is contained in:
Serge A. Zaitsev 2015-08-30 15:50:03 +02:00
parent 37c0ffcf94
commit 70ba7396ff
1 changed files with 6 additions and 6 deletions

12
zs.go
View File

@ -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
}