feat(footer): подпись о техническом партнёре + Speculation Rules
All checks were successful
deploy / deploy (push) Successful in 1m3s
All checks were successful
deploy / deploy (push) Successful in 1m3s
- Footer.astro: добавлена подпись "Сайт разработан и сопровождается техническим партнёром — ООО «АйТи Решения»" со ссылкой на hhivp.com (по образу stbolshevik.ru/partners/). - global.css: стиль .developer (light text 0.78rem с dashed-подчёркнутой ссылкой). - Base.astro: добавлен Speculation Rules API inline в <head> для пререндера same-origin ссылок на hover/pointerdown (Chromium 122+).
This commit is contained in:
@@ -55,6 +55,26 @@ const jsonLd = {
|
||||
|
||||
<script type="application/ld+json" is:inline set:html={JSON.stringify(jsonLd)} />
|
||||
|
||||
<!--
|
||||
Speculation Rules API (Chromium 122+) — prerender same-origin pages on
|
||||
hover/pointerdown for near-instant navigation. Только / и /privacy/ —
|
||||
eagerness moderate.
|
||||
-->
|
||||
<script type="speculationrules" is:inline set:html={JSON.stringify({
|
||||
prerender: [
|
||||
{
|
||||
where: {
|
||||
and: [
|
||||
{ href_matches: '/*' },
|
||||
{ not: { href_matches: '/_astro/*' } },
|
||||
{ not: { href_matches: '/sitemap*' } }
|
||||
]
|
||||
},
|
||||
eagerness: 'moderate'
|
||||
}
|
||||
]
|
||||
})} />
|
||||
|
||||
<Analytics />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user