move to a hand written index page

This commit is contained in:
Nico 2021-07-23 20:39:43 +01:00
parent 593a8410ec
commit 8eeb02eafa
1 changed files with 8 additions and 8 deletions

10
main.go
View File

@ -364,24 +364,24 @@ func main() {
panic(err)
}
}
f, err := os.Create(filepath.Join(geminiOutputDir, "index.gmi"))
f, err := os.Create(filepath.Join(geminiOutputDir, "_tags/_tags.gmi"))
defer f.Close()
if err != nil {
panic(err)
}
err = templates.ExecuteTemplate(f, "index.gmi", tagData)
err = templates.ExecuteTemplate(f, "_tags.gmi", tagData)
if err != nil {
panic(err)
}
f.Sync()
// Write out HTML index page
hf, err := os.Create(filepath.Join(htmlOutputDir, "index.html"))
// Write out HTML _tags page
hf, err := os.Create(filepath.Join(htmlOutputDir, "_tags.html"))
defer hf.Close()
if err != nil {
panic(err)
}
err = templates.ExecuteTemplate(hf, "index.html", tagData)
err = templates.ExecuteTemplate(hf, "_tags.html", tagData)
if err != nil {
panic(err)
}