@@ -86,7 +86,7 @@ const Favicon = () => {
86
86
<head >
87
87
<meta charset =" UTF-8" />
88
88
<meta name =" viewport" content =" width=device-width, initial-scale=1.0" />
89
- <link rel =" icon" type ={ Favicon ()} href ={ seo .favicon } />
89
+ <link rel =" icon" type ={ ` ${ Favicon ()}` } href ={ ` ${ seo .favicon } ` } />
90
90
<link rel =" sitemap" href =" /sitemap-index.xml" />
91
91
<meta name =" generator" content ={ seo .generator } />
92
92
<title >{ makeTitle (seo .title as string )} </title >
@@ -99,26 +99,26 @@ const Favicon = () => {
99
99
<!-- Open Graph / Facebook -->
100
100
<meta property =" og:type" content =" website" />
101
101
<meta property =" og:site_name" content =" @VtubersWiki" />
102
- <meta property =" og:title" content ={ makeTitle (seo .title as string )} />
102
+ <meta property =" og:title" content ={ ` ${ makeTitle (seo .title as string )} ` } />
103
103
<meta property =" og:description" content ={ seo .description } />
104
- <meta property =" og:image" content ={ seo .img } />
105
- <meta property =" og:url" content ={ Astro .url } />
104
+ <meta property =" og:image" content ={ ` ${ seo .img } ` } />
105
+ <meta property =" og:url" content ={ ` ${ Astro .url } ` } />
106
106
107
107
<!-- Twitter -->
108
108
<meta name =" twitter:card" content =" summary_large_image" />
109
109
<meta name =" twitter:site" content =" @VtubersWiki" />
110
110
<meta name =" twitter:creator" content =" @VtubersWiki" />
111
- <meta name =" twitter:title" content ={ makeTitle (seo .title as string )} />
112
- <meta name =" twitter:description" content ={ seo .description } />
113
- <meta name =" twitter:image" content ={ seo .img } />
111
+ <meta name =" twitter:title" content ={ ` ${ makeTitle (seo .title as string )} ` } />
112
+ <meta name =" twitter:description" content ={ ` ${ seo .description } ` } />
113
+ <meta name =" twitter:image" content ={ ` ${ seo .img } ` } />
114
114
115
115
<!-- Additional Metadata -->
116
116
<link rel =" manifest" href =" /manifest.json" />
117
- <meta name =" keywords" content ={ makeKeywords (seo .keywords as string )} />
117
+ <meta name =" keywords" content ={ ` ${ makeKeywords (seo .keywords as string )} ` } />
118
118
<meta name =" author" content =" @VtubersWiki" />
119
119
<meta name =" robots" content =" index, follow" />
120
- <link rel =" canonical" href ={ Astro .url } />
121
- <meta name =" msapplication-TileColor" content ={ seo .ThemeColor } />
120
+ <link rel =" canonical" href ={ ` ${ Astro .url } ` } />
121
+ <meta name =" msapplication-TileColor" content ={ ` ${ seo .ThemeColor } ` } />
122
122
123
123
<link rel =" stylesheet" href =" /static/css/main.css" />
124
124
<link rel =" stylesheet" href =" /static/css/mdown.css" />
0 commit comments