Skip to content

Commit

Permalink
Update projects page
Browse files Browse the repository at this point in the history
  • Loading branch information
jagdeepsb committed Oct 11, 2024
1 parent 8fc80a8 commit 45cf880
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions _projects/p1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
title: "Project 1"
due_date: 2024-10-18
pdf: "/assets/projects/proj1.pdf"
# sln: "/assets/homeworks/hw1_slns.pdf"
description: "Project is due on Friday October 18 at 11PM. However, you can turn it in up until Monday October 21 at 11PM with no penalty, but be careful with your time management because we have an exam on Thursday October 24."
---
5 changes: 4 additions & 1 deletion main/projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ nav_order: 3

# Projects

Submit projects to [gradescope](https://canvas.mit.edu/courses/28217/external_tools/369).

{% assign limit_value = 1 %} <!-- Set this to the number of projects to display-->
{% assign sorted_projects = site.projects | sort: 'release_date' %}
{% assign sorted_projects = site.projects | sort: 'due_date' %}
{% assign filtered_projects = sorted_projects | slice: 0, limit_value %}

<!-- Debugging output -->
Expand All @@ -25,6 +27,7 @@ nav_order: 3
- **Due Date:** {{ proj.due_date | date: "%B %d, %Y" }}
- {% if proj.pdf %} **[PDF]({{ proj.pdf }})** {% else %} **PDF:** *To be released* {% endif %}
- {% if proj.sln %} **[Solution]({{ proj.sln }})** {% else %} **Solution:** *To be released* {% endif %}
{% if proj.description %} - {{proj.description}} {% endif %}
{% if proj.additional_links %} - **Additional Links:** {% for link in proj.additional_links %}
- [{{ link.name }}]({{ link.link }}) {% endfor %} {% endif %}

Expand Down

0 comments on commit 45cf880

Please sign in to comment.