aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/base.html
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-02-03 14:30:47 +0100
committerAnhgelus Morhtuuzh <william@herges.fr>2026-02-03 14:30:47 +0100
commit61194884e782c9a92fe7f964a8c527a2223c4cc7 (patch)
tree7fef381055ed1446c44b22d1523ef5ba79dd07d0 /backend/templates/base.html
parent6ab3a7bd5640623aeb7847f1eb2f1077d8e777f3 (diff)
fix(frontend): using property instead of name in meta tags
Diffstat (limited to 'backend/templates/base.html')
-rw-r--r--backend/templates/base.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/backend/templates/base.html b/backend/templates/base.html
index b2071b1..548304e 100644
--- a/backend/templates/base.html
+++ b/backend/templates/base.html
@@ -8,22 +8,22 @@
<link rel="stylesheet" href="{{ $styles.Src }}" integrity="{{ $styles.Checksum }}" />
<link rel="shortcut icon" href="{{ static .Logo.Favicon }}" />
<link rel="alternate" href="/rss" type="application/rss+xml" title="RSS" />
- <meta property="description" content="{{ .PageDescription }}" />
+ <meta name="description" content="{{ .PageDescription }}" />
<!-- Open Graph -->
- <meta property="og:title" content="{{ .Title }}" />
- <meta property="og:type" content="website" />
- <meta property="og:url" content="https://{{ .Domain }}{{ .URL }}" />
- <meta property="og:image" content="{{ fullStatic .Image }}" />
- <meta property="og:description" content="{{ .PageDescription }}" />
- <meta property="og:local" content="fr_FR" />
- <meta property="og:site_name" content="{{ .Name }}" />
+ <meta name="og:title" content="{{ .Title }}" />
+ <meta name="og:type" content="website" />
+ <meta name="og:url" content="https://{{ .Domain }}{{ .URL }}" />
+ <meta name="og:image" content="{{ fullStatic .Image }}" />
+ <meta name="og:description" content="{{ .PageDescription }}" />
+ <meta name="og:local" content="fr_FR" />
+ <meta name="og:site_name" content="{{ .Name }}" />
{{ if ne .PubDate "" }}
- <meta property="article:published_time" content="{{ .PubDate }}" />
+ <meta name="article:published_time" content="{{ .PubDate }}" />
{{ end }}
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
- <meta property="twitter:domain" content="{{ .Domain }}" />
- <meta property="twitter:url" content="https://{{ .Domain }}{{ .URL }}" />
+ <meta name="twitter:domain" content="{{ .Domain }}" />
+ <meta name="twitter:url" content="https://{{ .Domain }}{{ .URL }}" />
<meta name="twitter:title" content="{{ .Title }}" />
<meta name="twitter:description" content="{{ .PageDescription }}" />
<meta name="twitter:image" content="{{ fullStatic .Image }}" />