Fix up first version and add Prettier and Docker
This commit is contained in:
parent
09a1919d36
commit
324050ee38
87 changed files with 2210 additions and 822 deletions
|
|
@ -1,7 +1,9 @@
|
|||
---
|
||||
import '@fontsource-variable/noto-serif';
|
||||
import "../styles/base.css"
|
||||
const { pageTitle } = Astro.props
|
||||
import "@fontsource-variable/noto-sans";
|
||||
import "@fontsource-variable/noto-serif";
|
||||
import "../styles/base.css";
|
||||
import Scripts from "../components/Scripts.astro";
|
||||
const { pageTitle } = Astro.props;
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
|
|
@ -16,14 +18,11 @@ const { pageTitle } = Astro.props
|
|||
<meta name="theme-color" content="#ffffff" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>{pageTitle || 'Gallery'} | Bad Manners</title>
|
||||
<title>{pageTitle || "Gallery"} | Bad Manners</title>
|
||||
<link rel="alternate" type="application/rss+xml" title="Gallery | Bad Manners" href={`${Astro.site}feed.xml`} />
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
<script>
|
||||
import '../scripts/dark-mode.ts'
|
||||
import '../scripts/verify-age.ts'
|
||||
</script>
|
||||
<Scripts />
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue