-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Update]: add tasks and leaderboard (#212)
* add task PCB designing Co-authored-by: AtharvaAtre <[email protected]> * added leaderboard and updated PCB task * add task Task 3: turtlesim Co-authored-by: DoobyDoPap <[email protected]> * add Embedded task Co-authored-by: Shankari02 <[email protected]> Co-authored-by: SurajSonawane2415 <[email protected]> * add mech design task Co-authored-by: SKYBIRDSGP <[email protected]> * fix leaderboard and update task 3 * add cv task Co-authored-by: Faulty404 <[email protected]> * minor updates in tasks and leaderboard * update news and add task 1 Co-authored-by: Atharv1035 <[email protected]> --------- Co-authored-by: AtharvaAtre <[email protected]> Co-authored-by: DoobyDoPap <[email protected]> Co-authored-by: Shankari02 <[email protected]> Co-authored-by: SurajSonawane2415 <[email protected]> Co-authored-by: SKYBIRDSGP <[email protected]> Co-authored-by: Faulty404 <[email protected]> Co-authored-by: Atharv1035 <[email protected]>
- Loading branch information
1 parent
394979e
commit 9d765d6
Showing
30 changed files
with
2,565 additions
and
212 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: post | ||
date: 2024 June 10 | ||
inline: true | ||
related_posts: false | ||
--- | ||
|
||
[Tasks](tasks/) are now live. Good luck to all participating teams! |
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,62 @@ | ||
--- | ||
layout: page | ||
title: Tasks | ||
permalink: /tasks/ | ||
description: | ||
nav: true | ||
nav_order: 2 | ||
horizontal: false | ||
--- | ||
<!-- pages/projects.md --> | ||
|
||
<div class="projects"> | ||
{%- if site.enable_project_categories and page.display_categories %} | ||
<!-- Display categorized projects --> | ||
{%- for category in page.display_categories %} | ||
<h2 class="category">{{ category }}</h2> | ||
{%- assign categorized_projects = site.tasks | where: "category", category -%} | ||
{%- assign sorted_projects = categorized_projects | sort: "importance" %} | ||
<!-- Generate cards for each project --> | ||
{% if page.horizontal -%} | ||
<div class="container"> | ||
<div class="row row-cols-2"> | ||
{%- for project in sorted_projects -%} | ||
{% include projects_horizontal.html %} | ||
{%- endfor %} | ||
</div> | ||
</div> | ||
{%- else -%} | ||
<div class="grid"> | ||
{%- for project in sorted_projects -%} | ||
{% include projects.html %} | ||
{%- endfor %} | ||
</div> | ||
{%- endif -%} | ||
{% endfor %} | ||
|
||
{%- else -%} | ||
|
||
<!-- Display projects without categories --> | ||
|
||
{%- assign sorted_projects = site.tasks | sort: "importance" -%} | ||
|
||
<!-- Generate cards for each project --> | ||
|
||
{% if page.horizontal -%} | ||
|
||
<div class="container"> | ||
<div class="row row-cols-2"> | ||
{%- for project in sorted_projects -%} | ||
{% include projects_horizontal.html %} | ||
{%- endfor %} | ||
</div> | ||
</div> | ||
{%- else -%} | ||
<div class="grid"> | ||
{%- for project in sorted_projects -%} | ||
{% include projects.html %} | ||
{%- endfor %} | ||
</div> | ||
{%- endif -%} | ||
{%- endif -%} | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.