Set canonical links
Alan Pearce alan@alanpearce.eu
Wed, 24 Apr 2024 18:36:39 +0200
5 files changed, 5 insertions(+), 0 deletions(-)
M cmd/build/template.go → cmd/build/template.go
@@ -122,6 +122,7 @@ return nil, err } doc.Find("html").SetAttr("lang", config.DefaultLanguage) doc.Find("head > link[rel=alternate]").SetAttr("title", config.Title) + doc.Find("head > link[rel=canonical]").SetAttr("href", pageURL) doc.Find(".title").SetText(config.Title) doc.Find("title").Add(".p-name").SetText(pageTitle) doc.Find("head > style").SetHtml("\n" + string(css))
M templates/homepage.html → templates/homepage.html
@@ -11,6 +11,7 @@ type="application/atom+xml" title="" href="/atom.xml" /> + <link href="" rel="canonical" /> <style></style> </head> <body>
M templates/list.html → templates/list.html
@@ -11,6 +11,7 @@ type="application/atom+xml" title="Site Title" href="/atom.xml" /> + <link href="" rel="canonical" /> <style></style> </head> <body>
M templates/post.html → templates/post.html
@@ -11,6 +11,7 @@ type="application/atom+xml" title="" href="/atom.xml" /> + <link href="" rel="canonical" /> <style></style> </head> <body>