-
Notifications
You must be signed in to change notification settings - Fork 2
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
16 changed files
with
301 additions
and
285 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 |
---|---|---|
|
@@ -13,5 +13,6 @@ export default defineConfig({ | |
}, | ||
redirects: { | ||
"/evaluations": "/evaluations/1", | ||
"/" : "/comp2804", | ||
}, | ||
}); |
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
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,15 +1,15 @@ | ||
--- | ||
const { href, title, icon, div } = Astro.props; | ||
const { href, title, icon, description } = Astro.props; | ||
import "./RowCard.scss"; | ||
--- | ||
|
||
<div class="RowCard"> | ||
<div class="RowCard__section"> | ||
<div class="RowCard__icon"><i class={icon}></i></div> | ||
<div class="RowCard__title"><h4>{title}</h4></div> | ||
<div class="RowCard__text"> | ||
<div class="RowCard__title">{title}</div> | ||
|
||
{description && <div class="RowCard__description">{description}</div>} | ||
</div> | ||
</div> | ||
<!-- <div class="RowCard__section"> | ||
<div class="RowCard__icon"><i class={"mdi mdi-book-open-variant"}></i></div> | ||
<div class="RowCard__icon"><i class={icon}></i></div> | ||
</div> --> | ||
</div> |
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
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 @@ | ||
--- | ||
const { link, disabled, icon, title } = Astro.props; | ||
--- | ||
|
||
<a href={link}> | ||
<div | ||
class={`Sidebar__item ${disabled ? "Sidebar__item--disabled" : "Sidebar__item--enabled"}`} | ||
> | ||
<div class="Sidebar__item__icon"> | ||
<i class={icon}></i> | ||
</div> | ||
<div class="Sidebar__item__title">{title}</div> | ||
</div> | ||
</a> |
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,8 @@ | ||
--- | ||
id: comp2804 | ||
code: COMP 2804 | ||
title: Discrete Structures II | ||
description: "Topics include: counting, sequences and sums, discrete probability, basic statistics, recurrence relations, randomized algorithms. Material is illustrated through examples from computing." | ||
textbook: "Discrete Structures for Computer Science: Counting, Recursion, and Probability" | ||
textbookUrl: https://patmorin.me/teaching/2804/resources/DiscreteStructures.pdf | ||
--- |
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
Oops, something went wrong.