-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
7ccdba0
commit 79314ff
Showing
8 changed files
with
52 additions
and
33 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,17 @@ | ||
- image: /_pages/projects/roboticArm/RoboticArm.jpg | ||
title: Full-Stack Robotic Arm Design; Software, Mechanical, and Electronics Integration | ||
tags: | ||
- MECH | ||
- CS | ||
- ELEC | ||
- AI | ||
excerpt: Short project description 1 | ||
url: /roboticArm/ | ||
|
||
- image: /path/to/project2-image.jpg | ||
title: Project 2 | ||
tags: | ||
- Tech Tag 3 | ||
- Tech Tag 4 | ||
excerpt: Short project description 2 | ||
url: /projects/project2.html |
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,17 @@ | ||
<div class="project-card"> | ||
<div style=" display: flex; justify-content: space-between;"> | ||
<div class="project-image-container" style="max-width: 30%; overflow: hidden; margin-right: 20px;"> | ||
<img src="{{ project.image }}" alt="{{ project.title }}" class="project-image" | ||
style="max-width: 100%; height: auto;"> | ||
</div> | ||
<div class="project-details" style="width: 70%;"> | ||
<h3 class="project-title">{{ project.title }}</h3> | ||
<ul class="tech-tags"> | ||
{% for tag in project.tags %} | ||
<li>{{ tag }}</li> | ||
{% endfor %} | ||
</ul> | ||
<p class="excerpt">{{ project.excerpt }}</p> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<a href="{{ project.url }}" class="project-link"> | ||
<!-- project card content here --> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
--- | ||
layout: splash | ||
title: "Projects" | ||
permalink: /Projects/ | ||
permalink: /projects/ | ||
header: | ||
overlay_color: "#000" | ||
overlay_filter: "0.5" | ||
overlay_image: /assets/images/projects/projectsHeader.jpg | ||
excerpt: Discover my diverse skillset in computer science, AI, robotics, mechanics, and electronics. | ||
--- | ||
--- | ||
|
||
<div class="project-catalog"> | ||
{% for project in site.data.projects-cards-data %} | ||
{% include project/project-card.html %} | ||
{% endfor %} | ||
</div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
layout: splash | ||
title: "Robtic Arm" | ||
permalink: /roboticArm/ | ||
--- |
This file was deleted.
Oops, something went wrong.
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