diff options
author | 2022-02-07 13:39:53 -0500 | |
---|---|---|
committer | 2022-02-07 13:39:53 -0500 | |
commit | a911d14eabe4f4f9080b59b1c292818ea2ca6123 (patch) | |
tree | 529fdda395eedc122955fd2851954d61554869b4 /docs/src/components/HeadCommon.astro | |
parent | 2bc91543ceeb5f3dd45e201bf75d79f186e85141 (diff) | |
download | astro-a911d14eabe4f4f9080b59b1c292818ea2ca6123.tar.gz astro-a911d14eabe4f4f9080b59b1c292818ea2ca6123.tar.zst astro-a911d14eabe4f4f9080b59b1c292818ea2ca6123.zip |
Remove docs from monorepo (#2517)
* Remove docs from monorepo
* Update PULL_REQUEST_TEMPLATE.md
* Update relative doc references with links or todo
Diffstat (limited to 'docs/src/components/HeadCommon.astro')
-rw-r--r-- | docs/src/components/HeadCommon.astro | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/docs/src/components/HeadCommon.astro b/docs/src/components/HeadCommon.astro deleted file mode 100644 index ca0782b60..000000000 --- a/docs/src/components/HeadCommon.astro +++ /dev/null @@ -1,49 +0,0 @@ -<!-- Global Metadata --> -<meta charset="utf-8" /> -<meta name="viewport" content="width=device-width" /> -<meta name="theme-color" content="#ff5e00" /> -<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> -<link rel="alternate icon" type="image/x-icon" href="/favicon.ico" /> -<link rel="sitemap" href="/sitemap.xml" /> - -<!-- Global CSS --> -<link rel="stylesheet" href="/theme.css" /> -<link rel="stylesheet" href="/code.css" /> -<link rel="stylesheet" href="/index.css" /> - -<!-- Preload Fonts --> -<link rel="preconnect" href="https://fonts.googleapis.com" /> -<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> -<link - href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital@0;1&display=swap" - rel="stylesheet" -/> - -<!-- Scrollable a11y code helper --> -<script type="module" src="/make-scrollable-code-focusable.js"></script> - -<!-- This is intentionally inlined to avoid FOUC --> -<script> - const root = document.documentElement; - const theme = localStorage.getItem('theme'); - if ( - theme === 'dark' || - (!theme && window.matchMedia('(prefers-color-scheme: dark)').matches) - ) { - root.classList.add('theme-dark'); - } else { - root.classList.remove('theme-dark'); - } -</script> - -<!-- Global site tag (gtag.js) - Google Analytics --> -<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130280175-15" -></script> -<script> - window.dataLayer = window.dataLayer || []; - function gtag() { - dataLayer.push(arguments); - } - gtag('js', new Date()); - gtag('config', 'UA-130280175-15'); -</script> |