mirror of
https://github.com/Motschen/midnightdust-eu.git
synced 2025-12-18 03:15:09 +01:00
Initial commit
This commit is contained in:
110
src/layouts/DefaultLayout.astro
Normal file
110
src/layouts/DefaultLayout.astro
Normal file
@@ -0,0 +1,110 @@
|
||||
---
|
||||
import '@astrojs/tailwind/base.css'
|
||||
import '../assets/scss/globals.scss'
|
||||
import SiteMeta from '../components/SiteMeta.astro'
|
||||
import Header from '../components/Header.astro'
|
||||
import Footer from '../components/Footer.astro'
|
||||
|
||||
const {
|
||||
title = 'Astro',
|
||||
description = 'A starter project with accessibility features using Astro static site builder. Contains accessible landmarks, skip links, a dark mode color scheme, better focus outline and keyboard menu navigation.',
|
||||
url,
|
||||
image = '/social-preview-image.png',
|
||||
author = 'Mark Teekman',
|
||||
} = Astro.props
|
||||
---
|
||||
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
|
||||
<!-- favicon -->
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
|
||||
<SiteMeta
|
||||
title={title}
|
||||
description={description.substring(0, 100)}
|
||||
url={Astro.site
|
||||
? `${Astro.site}/${title.toLowerCase().replaceAll(' ', '-')}`
|
||||
: `https://accessible-astro.dev/${title.toLowerCase().replaceAll(' ', '-')}`}
|
||||
image={image}
|
||||
author={author}
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<Header />
|
||||
<main id="main-content" transition:animate="fade">
|
||||
<slot />
|
||||
</main>
|
||||
<Footer />
|
||||
<style lang="scss" is:global>
|
||||
// theme settings
|
||||
:root {
|
||||
--radius-small: 3px;
|
||||
--radius-large: 6px;
|
||||
--gap-default: 2rem;
|
||||
--font-measure: 70ch;
|
||||
--font-family-default: 'Open Sans', sans-serif;
|
||||
--font-family-special: 'Open Sans', sans-serif;
|
||||
// light theme
|
||||
--font-color: var(--neutral-900);
|
||||
--action-color: var(--primary-300);
|
||||
--action-color-state: var(--primary-500);
|
||||
--background: var(--neutral-100);
|
||||
--primary-background: var(--primary-100);
|
||||
--neutral-background: var(--neutral-200);
|
||||
}
|
||||
|
||||
// dark color scheme overrides
|
||||
.darkmode {
|
||||
--font-color: var(--neutral-100);
|
||||
--action-color: var(--secondary-100);
|
||||
--action-color-state: var(--secondary-500);
|
||||
--background: var(--dark-100);
|
||||
--primary-background: var(--primary-500);
|
||||
--neutral-background: var(--neutral-900);
|
||||
}
|
||||
|
||||
// sticky footer on low content pages
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
color: var(--font-color);
|
||||
background-color: var(--background);
|
||||
|
||||
main {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 1rem;
|
||||
border-radius: 0.35rem;
|
||||
border: 2px solid var(--action-color);
|
||||
}
|
||||
|
||||
body .pagination a {
|
||||
&:hover,
|
||||
&:focus-visible {
|
||||
background-color: var(--action-color-state);
|
||||
|
||||
svg path {
|
||||
stroke: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
</html>
|
||||
13
src/layouts/MarkdownLayout.astro
Normal file
13
src/layouts/MarkdownLayout.astro
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
import DefaultLayout from './DefaultLayout.astro'
|
||||
|
||||
const { frontmatter } = Astro.props
|
||||
---
|
||||
|
||||
<DefaultLayout title={frontmatter.title}>
|
||||
<div class="container">
|
||||
<div class="space-content my-12">
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
</DefaultLayout>
|
||||
Reference in New Issue
Block a user