Skip to content

Commit ceec833

Browse files
committed
fix: meta tags
1 parent ae0c6e7 commit ceec833

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

src/template.html

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,26 @@
1212
/>
1313
<meta property="og:type" content="website" />
1414
<meta property="og:title" content="fssg - Fast Static Site Generator" />
15-
<meta name="twitter:title" content="fssg - Fast Static Site Generator" />
16-
<meta
17-
property="description"
18-
content="fssg is a minimal, fast static site generator built with POSIX shell scripting."
19-
/>
2015
<meta
2116
property="og:description"
2217
content="fssg is a minimal, fast static site generator built with POSIX shell scripting."
2318
/>
24-
<meta
25-
name="description"
26-
content="fssg is a minimal, fast static site generator built with POSIX shell scripting."
27-
/>
19+
<meta property="og:url" content="{{PAGE_URL}}" />
20+
<meta property="og:image" content="{{BASE_URL}}/static/img/logo.png" />
21+
<meta property="og:image:width" content="1200" />
22+
<meta property="og:image:height" content="630" />
23+
<meta property="og:site_name" content="fssg" />
24+
<meta name="twitter:card" content="summary_large_image" />
25+
<meta name="twitter:title" content="fssg - Fast Static Site Generator" />
2826
<meta
2927
name="twitter:description"
3028
content="fssg is a minimal, fast static site generator built with POSIX shell scripting."
3129
/>
30+
<meta name="twitter:image" content="{{BASE_URL}}/static/img/logo.png" />
3231
<meta
33-
property="og:image"
34-
content="https://xlc-dev.github.io/fssg/static/img/logo.png"
35-
/>
36-
<meta
37-
name="twitter:image"
38-
content="https://xlc-dev.github.io/fssg/static/img/logo.png"
32+
name="description"
33+
content="fssg is a minimal, fast static site generator built with POSIX shell scripting."
3934
/>
40-
<meta property="og:url" content="https://xlc-dev.github.io/fssg/" />
4135
</head>
4236
<body>
4337
{{content}}

0 commit comments

Comments
 (0)