diff options
author | frosty <passedgoadngot200@disroot.org> | 2025-09-16 18:24:26 -0400 |
---|---|---|
committer | frosty <passedgoadngot200@disroot.org> | 2025-09-16 18:24:26 -0400 |
commit | 71e72496b0709de3ef67b9d80b9ff220309ab5c8 (patch) | |
tree | 5ed89f5f4cdbece5fae2bdc340232818a5896f45 | |
parent | 06ba136a9d4ea6b96780cf33d84ec72a9eaefca4 (diff) | |
download | www-71e72496b0709de3ef67b9d80b9ff220309ab5c8.tar.gz www-71e72496b0709de3ef67b9d80b9ff220309ab5c8.zip |
-rw-r--r-- | layouts/_default/baseof.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index d9b2212..f60954f 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -6,6 +6,10 @@ <title>{{ if not .IsHome }}{{ .Title | title }} - {{ end }}{{ .Site.Title }}</title> <link rel="stylesheet" type="text/css" href="/style.css"> <link rel="icon" href="/favicon.ico"> + <meta property="og:title" content="{{ if not .IsHome }}{{ .Title | title }} - {{ else }}{{ .Site.Title }}{{ end }}"> + <meta property="og:url" content="{{ .RelPermalink }}"> + <meta property="og:image" content="/avatar.png"> + <meta property="og:site_name" content="{{ .Site.Title }}"> </head> <body> {{ partial "header.html" . }} |