mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
fix: move noscript tag somewhere valid
This commit is contained in:
parent
2d6add63ff
commit
54af0545b3
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,6 @@
|
|||
const { title = 'Galaxy explorer' } = Astro.props
|
||||
---
|
||||
|
||||
<noscript>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
@ -12,11 +11,12 @@ const { title = 'Galaxy explorer' } = Astro.props
|
|||
<link rel="stylesheet" href="/fonts.css">
|
||||
<title>{title}</title>
|
||||
</head>
|
||||
<noscript>
|
||||
<body>
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
||||
</noscript>
|
||||
</html>
|
||||
|
||||
<style>
|
||||
* {
|
||||
|
|
Loading…
Reference in a new issue