mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-04 08:30:27 +03:00
Update default title and description
This commit is contained in:
@ -14,7 +14,6 @@ const theme = "transparent_dark";
|
||||
---
|
||||
|
||||
<script
|
||||
defer
|
||||
src="https://giscus.app/client.js"
|
||||
data-category-id={categoryId}
|
||||
data-category={category}
|
||||
@ -28,5 +27,4 @@ const theme = "transparent_dark";
|
||||
data-strict={strict}
|
||||
data-theme={theme}
|
||||
crossorigin={crossorigin}
|
||||
>
|
||||
</script>
|
||||
></script>
|
||||
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
|
||||
|
||||
const { title, description } = Astro.props;
|
||||
---
|
||||
|
||||
<head>
|
||||
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
|
||||
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
||||
<meta content="index, follow" name="robots" />
|
||||
<meta content="Description" name="description" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
|
||||
<meta name="description" content={description ?? import.meta.env.DEFAULT_DESCRIPTION} />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<link href="/feed.xml" rel="alternate" title="RSS" type="application/atom+xml" />
|
||||
<link href="/sitemap-index.xml" rel="sitemap" />
|
||||
<link href={canonicalURL} rel="canonical" />
|
||||
|
||||
<title>Title</title>
|
||||
<title>{title ?? import.meta.env.DEFAULT_TITLE}</title>
|
||||
</head>
|
||||
|
Reference in New Issue
Block a user