feat(seo): discoverability + Schema.org + IndexNow + Trivy (#1)
Some checks failed
deploy / deploy (push) Failing after 13s
Some checks failed
deploy / deploy (push) Failing after 13s
This commit was merged in pull request #1.
This commit is contained in:
@@ -26,6 +26,33 @@ const {
|
||||
const fullTitle = title ? `${title} — ${SITE_TITLE}` : SITE_TITLE;
|
||||
const url = canonical ?? new URL(Astro.url.pathname, SITE_URL).toString();
|
||||
const ogImageUrl = new URL(ogImage, SITE_URL).toString();
|
||||
|
||||
const jsonLd = {
|
||||
'@context': 'https://schema.org',
|
||||
'@graph': [
|
||||
{
|
||||
'@type': 'WebSite',
|
||||
'@id': `${SITE_URL}/#website`,
|
||||
url: `${SITE_URL}/`,
|
||||
name: SITE_TITLE,
|
||||
description: SITE_DESCRIPTION,
|
||||
inLanguage: 'ru-RU',
|
||||
publisher: { '@id': `${SITE_URL}/#publisher` },
|
||||
},
|
||||
{
|
||||
'@type': 'NewsMediaOrganization',
|
||||
'@id': `${SITE_URL}/#publisher`,
|
||||
name: SITE_TITLE,
|
||||
url: `${SITE_URL}/`,
|
||||
logo: {
|
||||
'@type': 'ImageObject',
|
||||
url: `${SITE_URL}/favicon.svg`,
|
||||
},
|
||||
description:
|
||||
'Краеведческое медиа: история, новости и фотолетопись подмосковного города Пушкино — от давних времён до наших дней.',
|
||||
},
|
||||
],
|
||||
};
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
@@ -48,6 +75,8 @@ const ogImageUrl = new URL(ogImage, SITE_URL).toString();
|
||||
<meta property="og:site_name" content={SITE_TITLE} />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
|
||||
<script type="application/ld+json" is:inline set:html={JSON.stringify(jsonLd)} />
|
||||
|
||||
<Analytics />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user