fix html errors

This commit is contained in:
2020-01-17 20:32:21 +01:00
parent d65201202d
commit 185449c5e6
35 changed files with 73 additions and 245 deletions

View File

@@ -31,7 +31,7 @@ type linkRule struct {
}
func (o linkRule) HTML() template.HTML {
return template.HTML(`<link name="` + o.Rel + `" href="` + o.HREF + `"/>` + "\n")
return template.HTML(`<link rel="` + o.Rel + `" href="` + o.HREF + `"/>` + "\n")
}
func metadataFromFile(f pixelapi.FileInfo) (meta template.HTML) {