Skip to content

Commit

Permalink
Merge pull request #23 from torontojs/feat/codeofc
Browse files Browse the repository at this point in the history
feat: code of conduct page
  • Loading branch information
dreymoreau authored Jul 3, 2024
2 parents e95e4a4 + 783331c commit 47e15b9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/pages/codeofc.astro
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>

0 comments on commit 47e15b9

Please sign in to comment.