Skip to content

Commit

Permalink
fullscreen images when clicked
Browse files Browse the repository at this point in the history
  • Loading branch information
westonbelk committed Apr 8, 2024
1 parent d95e238 commit 51c4ab6
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions web-projects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,15 @@ hero-text: A collection of web-related side projects.

* A Pokemon card database and collection tracker that I built to keep my collection organized. The frontend is built in Angular, the backend API is written in Golang, and MongoDB is the database.

<img style="max-height: 300px;" src="images/tcg-house-desktop.png">
<img style="max-height: 300px;" src="images/tcg-house.png">
<button type="button" data-bs-toggle="modal" data-bs-target="#desktopTcgHouseModal">
<img style="max-height: 300px;" src="images/tcg-house-desktop.png" data-bs-modal="modal" data-bs-target="#desktopTcgHouseModal">
</button>


<button type="button" data-bs-toggle="modal" data-bs-target="#mobileTcgHouseModal">
<img style="max-height: 300px;" src="images/tcg-house.png">
</button>

{% include modal.html url="images/tcg-house-desktop.png" id="desktopTcgHouseModal" %}

{% include modal.html url="images/tcg-house.png" id="mobileTcgHouseModal" %}

0 comments on commit 51c4ab6

Please sign in to comment.