-
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
1 changed file
with
14 additions
and
21 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 |
---|---|---|
|
@@ -24,7 +24,6 @@ interface SharedQuestionCardProps { | |
image: ImageProps["src"]; | ||
title: string; | ||
href: string; | ||
institution?: string; | ||
ownerName?: string; | ||
ownerEmail?: string; | ||
github?: string; | ||
|
@@ -34,7 +33,6 @@ const SharedQuestionCard: React.FC<SharedQuestionCardProps> = ({ | |
image, | ||
title, | ||
href, | ||
institution, | ||
ownerName, | ||
ownerEmail, | ||
github, | ||
|
@@ -63,11 +61,6 @@ const SharedQuestionCard: React.FC<SharedQuestionCardProps> = ({ | |
{ownerEmail && <a href={`mailto:${ownerEmail}`}>{ownerEmail}</a>} | ||
</p> | ||
)} | ||
{institution && ( | ||
<p className="mb-1"> | ||
<strong>Institution: </strong> {institution} | ||
</p> | ||
)} | ||
{github && ( | ||
<p className="mb-1"> | ||
<Link href={github}>View source on Github</Link> | ||
|
@@ -117,10 +110,10 @@ export default function Courses() { | |
<div className="container-md"> | ||
<Heading>Publicly Shared Questions</Heading> | ||
<p> | ||
This catalog contains questions that have been publicly shared by instructors from | ||
various universities. If you like any of these questions, you can | ||
use them directly in your course, without any need to copy | ||
questions. Read these{" "} | ||
This catalog contains questions that have been publicly shared by | ||
instructors from various universities. If you like any of these | ||
questions, you can use them directly in your course, without any | ||
need to copy questions. Read these{" "} | ||
<Link href="https://prairielearn.readthedocs.io/en/latest/questionSharing/"> | ||
instructions | ||
</Link>{" "} | ||
|
@@ -146,35 +139,35 @@ export default function Courses() { | |
title="Physics: E&M" | ||
href="https://us.prairielearn.com/pl/public/course/2922/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-physics2" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={eorstatics} | ||
title="Statics" | ||
href="https://us.prairielearn.com/pl/public/course/2924/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-statics" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={eordynamics} | ||
title="Dynamics" | ||
href="https://us.prairielearn.com/pl/public/course/2955/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-dynamics" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={eorsolids} | ||
title="Solid Mechanics" | ||
href="https://us.prairielearn.com/pl/public/course/2925/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-solidMechanics" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={eornumerical} | ||
title="Numerical Methods" | ||
href="https://us.prairielearn.com/pl/public/course/2926/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-numericalMethods" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={eorthermo} | ||
|
@@ -183,36 +176,36 @@ export default function Courses() { | |
ownerName="Shelby Hutchens" | ||
ownerEmail="[email protected]" | ||
github="https://github.com/PrairieLearn/pl-oer-thermodynamics" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={eorpython} | ||
title="Introduction to Python" | ||
href="https://us.prairielearn.com/pl/public/course/2889/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-python" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={cs233Image} | ||
title="Miscellaneous CS Topics" | ||
href="https://us.prairielearn.com/pl/public/course/6717/questions" | ||
github="https://github.com/PrairieLearn/pl-oer-csmix" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={sigcse2023} | ||
title="SIGCSE 2023 - Workhop" | ||
href="https://us.prairielearn.com/pl/public/course/1305/questions" | ||
github="https://github.com/PrairieLearn/pl-prairielearn101" | ||
></SharedQuestionCard> | ||
/> | ||
|
||
<SharedQuestionCard | ||
image={ece6353fraida} | ||
title="Internet Architecture and Protocols" | ||
href="https://us.prairielearn.com/pl/public/course/358/questions" | ||
ownerName="Fraida Fund" | ||
ownerEmail="[email protected]" | ||
></SharedQuestionCard> | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
|