Skip to content

Commit 2e9bb72

Browse files
committed
first history wall of fame entry
1 parent 7823ee2 commit 2e9bb72

File tree

10 files changed

+324
-214
lines changed

10 files changed

+324
-214
lines changed

dist/style.css

Lines changed: 148 additions & 107 deletions
Large diffs are not rendered by default.

dist/wall/hof.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
const historyHallOfFame = [
2+
{
3+
name: "Charles Burchill, Dave Routhier and Steve Lambert",
4+
date: "2024-06-30",
5+
img: "/wall/img/stevecharlesdave.jpg",
6+
map: "https://strava.app.link/zbYZaoTzRKb"
7+
}
8+
]
9+
110
const harderHallOfFame = [
211
{
312
name: "Steve Lambert and Charles Burchill",

dist/wall/img/stevecharlesdave.jpg

160 KB
Loading

dist/wall/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ <h1 class="font-bold text-7xl text-blue-700">Wall of Fame</h1>
7575
</div>
7676
</div>
7777
<div class="my-4">
78+
<h2 class="text-4xl font-semibold text-blue-700">History Hardcore Challenge</h2>
79+
<div id="wall-of-fame-history" class="flex m-4 gap-4 flex-wrap"></div>
7880
<h2 class="text-4xl font-semibold text-blue-700">Harder Challenge</h2>
7981
<div id="wall-of-fame-harder" class="flex m-4 gap-4 flex-wrap"></div>
8082
<h2 class="text-4xl font-semibold text-blue-700">Easier Challenge</h2>

dist/wall/wall.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ const showHofer = (selector) => (hofer) => {
2424

2525
const addToEasier = showHofer('#wall-of-fame-easier');
2626
const addToHarder = showHofer('#wall-of-fame-harder');
27+
const addToHistory = showHofer('#wall-of-fame-history');
2728

2829
easierHallOfFame.forEach(addToEasier);
2930
harderHallOfFame.forEach(addToHarder);
31+
historyHallOfFame.forEach(addToHistory);
3032

3133
const you = {
3234
name: "This could be you!",
@@ -37,3 +39,4 @@ const you = {
3739

3840
addToEasier(you)
3941
addToHarder(you)
42+
addToHistory(you)

0 commit comments

Comments
 (0)