-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from torontojs/feat/codeofc
feat: code of conduct page
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
@@ -1,3 +1,24 @@ | ||
--- | ||
import SiteNav from '../components/SiteNav/index.astro'; | ||
import SkipToContent from '../components/SkipToContent/index.astro'; | ||
import BaseLayout from '../layouts/Base/index.astro'; | ||
import '../styles/about.css'; | ||
const BLOG_URL = Astro.site?.href; | ||
--- | ||
<BaseLayout | ||
htmlTitle={['About', 'Toronto JS Blog']} | ||
title="About Toronto JS Blog" | ||
url={`${BLOG_URL}about`} | ||
description="About the Toronto JS blog." | ||
tags={['development', 'javascript', 'toronto', 'community', 'blog']} | ||
> | ||
<SkipToContent slot="header" /> | ||
<header slot="header"> | ||
<SiteNav /> | ||
<h1 class="centerElements">Code of Conduct</h1> | ||
</header> | ||
<div id="contents"> | ||
<p class="centerElements">This Code of Conduct is from the<a href="https://torontojs.com/code_of_conduct" target="_blank">TorontoJS Website!</a></p> | ||
</div> | ||
</BaseLayout> |