Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Metadata Descriptions #16

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: ../../../layouts/Resource.astro
title: Computer Science Related Breadth Electives
description: An informative guide for computer science students at Carleton University on selecting breadth electives related to their field, including course insights and relevance to computer science concepts.
date: 2023-09-02T00:00:00.000Z
draft: false
slug: articles/computer-science-related-breadth-electives
Expand Down
1 change: 1 addition & 0 deletions src/content/resources/articles/dsri.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: ../../../layouts/Resource.astro
title: Dean's Summer Research Internships
description: Overview of Dean's Summer Research Internships (DSRIs) at Carleton University, including eligibility, application process, and tips for securing a DSRI with a Computer Science professor.
date: 2023-07-11T00:00:00.000Z
draft: false
slug: articles/dsri
Expand Down
1 change: 1 addition & 0 deletions src/content/resources/articles/the-value-of-grades.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: ../../../layouts/Resource.astro
title: What is Impacted By Your Grades
description: A guide on how grades at Carleton University affect scholarships, course prerequisites, co-op eligibility, and graduate school applications.
date: 2023-07-11T00:00:00.000Z
draft: false
slug: articles/what-is-impacted-by-your-grades
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Resource.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { CircleIcon, Navbar } from "../components/core";
const { frontmatter } = Astro.props;
const metadata = {
title: frontmatter.title,
description: "coming soon",
description: frontmatter.description,
url: "",
image: "/",
};
Expand Down
3 changes: 2 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import "./index.style.scss";

const metadata = {
title: "Home",
description: "tbd",
description:
"Resources and guides for your Computer Science Degree at Carleton",
url: "/",
image: "/",
};
Expand Down
Loading