Skip to content

Commit

Permalink
Merge pull request #7 from naschorr/dev
Browse files Browse the repository at this point in the history
Merging projects page changes into main
  • Loading branch information
naschorr authored Aug 22, 2024
2 parents 3c63dea + c003f98 commit 2964da8
Show file tree
Hide file tree
Showing 7 changed files with 269 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div *ngIf="!!project"
class="panel color-medium mt-3">
<div class="flex justify-between mb-2 items-center">
<div class="flex justify-between mb-3 items-center">
<h2>
<a *ngIf="!!project.url; else projectUrlExists"
[href]="project.url"
Expand All @@ -25,17 +25,17 @@ <h2>
</ng-container>
</div>
<div *ngIf="!!project.images"
class="gallery-container mb-2">
class="gallery-container mb-3">
<gallery-inline [images]="project.images"></gallery-inline>
</div>
<div class="description-container mb-2">
<div class="description-container mb-3">
<ng-container *ngFor="let paragraph of project.description; index as p;">
<p [innerHTML]="paragraph"
class="mb-2"></p>
class="mb-1"></p>
</ng-container>
</div>
<div *ngIf="project.funFacts && project.funFacts.length > 0"
class="mb-2">
class="mb-3">
<div>Fun Stats:</div>
<ul *ngFor="let fact of project.funFacts; index as f;"
class="list-inside">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
width: 100%;
}

.gallery-container {
overflow-y: visible;
overflow-x: clip;
}

@for $i from 1 through length(variables.$breakpoints) {
$breakpoint: list.nth(variables.$breakpoints, $i);
@media(min-width: $breakpoint) {
Expand Down
15 changes: 11 additions & 4 deletions src/assets/data/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"url": "https://github.com/naschorr/hawking",
"funFacts": [
"More than 2.6 million messages spoken",
"More than 2.8 million messages spoken",
"Active in more than 2,800 servers"
],
"technologies": [
Expand Down Expand Up @@ -71,7 +71,7 @@
{
"name": "Mail To SMS",
"description": [
"Programatically send out SMS messages using email! Mail To SMS is simple to integrate, and offers an easy to use CLI to support scripting too."
"Programmatically send out SMS messages using email! Mail To SMS is simple to integrate, and offers an easy to use CLI to support scripting too."
],
"url": "https://github.com/naschorr/mail-to-sms",
"technologies": [
Expand Down Expand Up @@ -140,7 +140,7 @@
"url": "assets/images/projects/harbor-freight-storage-bin-upgrade/m8n_m8s_double.avif",
"description": [
"Bins come in a variety of sizes, to help store all kinds of different parts.",
"Here's a extra-large bin filled with M8 knobs and M8 100mm carriage bolts."
"Here's an extra-large bin filled with M8 knobs and M8 100mm carriage bolts."
],
"altText": "A photo of a large bin filled with M8 knobs and M8 100mm carriage bolts."
},
Expand All @@ -149,7 +149,14 @@
"description": [
"Labels can be swapped out easily, just pop them out by pressing a screwdriver or an M4 or smaller bolt through the hole in the back."
],
"altText": "A photo of a small bin having it's label removed with a screwdriver pushed through the hole in the back."
"altText": "A photo of a small bin having its label removed with a screwdriver pushed through the hole in the back."
},
{
"url": "assets/images/projects/harbor-freight-storage-bin-upgrade/bin_features.avif",
"description": [
"The bins themselves are designed for both ease of use, and ease of printing."
],
"altText": "An infographic of a cutaway of a single bin, showing some of the features of the design."
}
],
"url": null,
Expand Down
Binary file not shown.
Binary file not shown.
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.

0 comments on commit 2964da8

Please sign in to comment.