Skip to content

Commit

Permalink
first history wall of fame entry
Browse files Browse the repository at this point in the history
  • Loading branch information
JLambertazzo committed Jul 1, 2024
1 parent 7823ee2 commit 2e9bb72
Show file tree
Hide file tree
Showing 10 changed files with 324 additions and 214 deletions.
255 changes: 148 additions & 107 deletions dist/style.css

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions dist/wall/hof.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
const historyHallOfFame = [
{
name: "Charles Burchill, Dave Routhier and Steve Lambert",
date: "2024-06-30",
img: "/wall/img/stevecharlesdave.jpg",
map: "https://strava.app.link/zbYZaoTzRKb"
}
]

const harderHallOfFame = [
{
name: "Steve Lambert and Charles Burchill",
Expand Down
Binary file added dist/wall/img/stevecharlesdave.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions dist/wall/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ <h1 class="font-bold text-7xl text-blue-700">Wall of Fame</h1>
</div>
</div>
<div class="my-4">
<h2 class="text-4xl font-semibold text-blue-700">History Hardcore Challenge</h2>
<div id="wall-of-fame-history" class="flex m-4 gap-4 flex-wrap"></div>
<h2 class="text-4xl font-semibold text-blue-700">Harder Challenge</h2>
<div id="wall-of-fame-harder" class="flex m-4 gap-4 flex-wrap"></div>
<h2 class="text-4xl font-semibold text-blue-700">Easier Challenge</h2>
Expand Down
3 changes: 3 additions & 0 deletions dist/wall/wall.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ const showHofer = (selector) => (hofer) => {

const addToEasier = showHofer('#wall-of-fame-easier');
const addToHarder = showHofer('#wall-of-fame-harder');
const addToHistory = showHofer('#wall-of-fame-history');

easierHallOfFame.forEach(addToEasier);
harderHallOfFame.forEach(addToHarder);
historyHallOfFame.forEach(addToHistory);

const you = {
name: "This could be you!",
Expand All @@ -37,3 +39,4 @@ const you = {

addToEasier(you)
addToHarder(you)
addToHistory(you)
Loading

0 comments on commit 2e9bb72

Please sign in to comment.