summaryrefslogtreecommitdiff
path: root/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'template.go')
-rw-r--r--template.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/template.go b/template.go
index 8bca4fd..fef5e0f 100644
--- a/template.go
+++ b/template.go
@@ -23,7 +23,6 @@ type TemplateData struct {
Content string
Site string
Generator string
- Sitemap string
}
// GenerateHTML generates the HTML file from the Markdown document.
@@ -40,6 +39,5 @@ func GenerateHTML(file io.Writer, fm FrontMatter, content string) error {
Content: content,
Site: *url,
Generator: fmt.Sprintf("crocc %s (https://crocc.nc0.fr)", version),
- Sitemap: fmt.Sprintf("%s/sitemap.xml", *url),
})
}