-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
119 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore artifacts: | ||
public | ||
dist | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<footer id="global-footer" role="contentinfo"> | ||
<div class="container readable"> | ||
<ul role="list" class="social flex gap"> | ||
<li> | ||
<a | ||
class="button" | ||
itemprop="sameAs" | ||
rel="me" | ||
href="https://github.com/eventua11y/a11y.courses" | ||
title="GitHub"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
class="button" | ||
itemprop="sameAs" | ||
rel="me" | ||
href="https://mastodon.social/@a11ycourses" | ||
title="Mastodon"> | ||
<i class="fab fa-mastodon"></i> | ||
</a> | ||
</li> | ||
</ul> | ||
<p class="text-muted"> | ||
<small>© {new Date().getFullYear()} | ||
<a href="https://mattobee.com/">Matt Obee</a> | ||
</small> | ||
</p> | ||
<p class="text-muted"> | ||
<small>This page conforms to | ||
<abbr title="Web Content Accessibility Guidelines">WCAG</abbr> | ||
2.2 at Level | ||
<abbr title="Double-A">AA</abbr>.</small> | ||
</p> | ||
<p class="text-muted"> | ||
<small>Powered by | ||
<a href="https://astro.build/">Astro</a>, | ||
<a href="https://www.sanity.io/">Sanity</a>, | ||
and | ||
<a href="https://www.netlify.com/">Netlify</a>. Basic accessibility tests by | ||
<a href="https://github.com/pa11y/pa11y">pa11y</a>/<a href="https://github.com/dequelabs/axe-core">axe-core</a>.</small> | ||
</p> | ||
<p class="text-muted"> | ||
<small> | ||
Privacy-first analytics by | ||
<a href="https://usefathom.com/ref/VZYIPT">Fathom</a>. | ||
</small> | ||
</p> | ||
</div> | ||
</footer> | ||
<!-- End #global-footer --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
import { Image } from "astro:assets"; | ||
--- | ||
|
||
<header id="global-header" class="masthead" role="banner"> | ||
<div class="inner"> | ||
<div class="masthead__logo"> | ||
<a href="/" rel="home"> | ||
<Image class="logo" src={logo} alt="a11y.courses" /> | ||
</a> | ||
</div> | ||
</div> | ||
</header> | ||
<!-- End #global-header --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/// <reference path="../.astro/types.d.ts" /> | ||
/// <reference types="astro/client" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
import Footer from "../components/Footer.astro"; | ||
const { title } = Astro.props.frontmatter || Astro.props; | ||
--- | ||
|
||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="generator" content="Astro" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>{title ? `${title} - a11y.courses` : "a11y.courses"}</title> | ||
<script | ||
src="https://kit.fontawesome.com/ad02fca329.js" | ||
crossorigin="anonymous"></script> | ||
</head> | ||
<body> | ||
<h1>{title}</h1> | ||
<slot /> | ||
<Footer /> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
import BaseLayout from '../layouts/BaseLayout.astro'; | ||
--- | ||
<BaseLayout> | ||
<p>Hello, world</p> | ||
</BaseLayout> |