Skip to content

Commit

Permalink
add semester hours
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaumohl committed Sep 3, 2024
1 parent b234c49 commit 0272047
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .astro/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1718490552117
"lastUpdateCheck": 1725402096907
}
}
9 changes: 0 additions & 9 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,6 @@ declare module 'astro:content' {
data: InferEntrySchema<"blog">
} & { render(): Render[".md"] };
};
"code-of-conduct": {
"code-of-conduct.md": {
id: "code-of-conduct.md";
slug: "code-of-conduct";
body: string;
collection: "code-of-conduct";
data: any
} & { render(): Render[".md"] };
};
"docs": {
"Code-of-Conduct.md": {
id: "Code-of-Conduct.md";
Expand Down
16 changes: 8 additions & 8 deletions src/content/_coord-hours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,35 @@ interface CoordHour {
let CoordHours: CoordHour[] = [
{
Time: "10 - 11 AM",
Coords: ["Michael", "", "", "", "Emily"],
Coords: ["", "", "", "", ""],
},
{
Time: "11 AM - 12 PM",
Coords: ["", "Rudy", "", "Rudy", "Emily"],
Coords: ["Anna", "Nico", "Ishan", "Nico", "Anna"],
},
{
Time: "12 - 1 PM",
Coords: ["Alan", "", "Pranav", "Alan", "Pranav"],
Coords: ["Sam", "", "Sam", "", "Chris"],
},
{
Time: "1 - 2 PM",
Coords: ["Michael", "Ben L", "", "Ben L", "Sam"],
Coords: ["Emily", "Rahul", "", "Rahul", "Chris"],
},
{
Time: "2 - 3 PM",
Coords: ["David", "Mihir", "David", "", "Sam"],
Coords: ["Emily", "", "", "", ""],
},
{
Time: "3 - 4 PM",
Coords: ["Ben", "Mihir", "Ben", "", ""],
Coords: ["Michael", "", "Michael", "", ""],
},
{
Time: "4 - 5 PM",
Coords: ["Grace", "", "Chris", "", ""],
Coords: ["Grace", "", "Ishan", "", ""],
},
{
Time: "5 - 6 PM",
Coords: ["Grace", "", "Chris", "", ""],
Coords: ["Grace", "", "", "", ""],
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/content/resources
Submodule resources updated 1 files
+2 −1 README.md
4 changes: 2 additions & 2 deletions src/pages/hours.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ const hasCoordColor = curCoordInfo.hasCoord ? "text-green-500" : "text-red-700";
Anyone is welcome in the UPL when a Coord is present, and Coords
commit to be present at certain office hours. Come in and say hi!
</p>
<h5
<!-- <h5
class={`pt-2 ${hasCoordColor} font-medium text-center md:text-md text-sm`}
>
{
curCoordInfo.hasCoord
? `Current Coord: ${curCoordInfo.Coord} (${curCoordInfo.Time})`
: "No Coord currently scheduled. The UPL is not guaranteed to be open at this time."
}
</h5>
</h5> -->
</div>
<div class="mt-8">
<table
Expand Down

0 comments on commit 0272047

Please sign in to comment.