Make Apache config optional and add h-feed support
This commit is contained in:
parent
bf82d8bcd6
commit
132b2b69f3
14 changed files with 182 additions and 53 deletions
|
|
@ -5,11 +5,11 @@ import DarkModeScript from "../components/DarkModeScript.astro";
|
|||
import AgeRestrictedModal from "../components/AgeRestrictedModal.astro";
|
||||
|
||||
type Props = {
|
||||
pageTitle?: string;
|
||||
pageTitle: string;
|
||||
lang?: string;
|
||||
};
|
||||
|
||||
const { pageTitle = "Gallery", lang = "en" } = Astro.props;
|
||||
const { pageTitle, lang = "en" } = Astro.props;
|
||||
---
|
||||
|
||||
<html lang={lang}>
|
||||
|
|
@ -25,6 +25,7 @@ const { pageTitle = "Gallery", lang = "en" } = Astro.props;
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>{pageTitle} | Bad Manners</title>
|
||||
<link rel="me" href="https://badmanners.xyz" />
|
||||
<link rel="me" href="https://meow.social/@BadManners" />
|
||||
<link
|
||||
rel="alternate"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue