From 9f6593331c22ed7d986fc730a573eced448c3e04 Mon Sep 17 00:00:00 2001 From: lucaskev Date: Wed, 1 Jul 2026 13:57:25 +0000 Subject: [PATCH 1/8] Change de runner --- .forgejo/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 1467c91..23ead74 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -1,7 +1,7 @@ on: [push] jobs: build: - runs-on: docker + runs-on: hadrien steps: - name: Checkout code uses: actions/checkout@v4 From 3c36572ce1af9d5b6aed43428f8bd1b8350ef787 Mon Sep 17 00:00:00 2001 From: lucaskev Date: Wed, 1 Jul 2026 14:48:34 +0000 Subject: [PATCH 2/8] revert 9f6593331c22ed7d986fc730a573eced448c3e04 revert Change de runner --- .forgejo/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 23ead74..1467c91 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -1,7 +1,7 @@ on: [push] jobs: build: - runs-on: hadrien + runs-on: docker steps: - name: Checkout code uses: actions/checkout@v4 From 94ab6897d588a6649126a2dd6838168bdc67e556 Mon Sep 17 00:00:00 2001 From: nono-lqdn Date: Tue, 9 Jun 2026 14:42:47 +0200 Subject: [PATCH 3/8] Only run actions when a push happens on the main branch --- .forgejo/workflows/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 1467c91..bf5467e 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -1,4 +1,7 @@ -on: [push] +on: + push: + branches: + - main jobs: build: runs-on: docker From 8c23511c6b1f4c546d1c9d3bac9497fbf1e726df Mon Sep 17 00:00:00 2001 From: nono-lqdn Date: Tue, 9 Jun 2026 14:43:20 +0200 Subject: [PATCH 4/8] Add link to the map in every html file --- contact.html | 1 + guide.template.html | 1 + index.html | 1 + poster.html | 1 + programme.html | 1 + 5 files changed, 5 insertions(+) diff --git a/contact.html b/contact.html index 789749b..4711ae8 100644 --- a/contact.html +++ b/contact.html @@ -17,6 +17,7 @@ maison guide programme + carte poster contact diff --git a/guide.template.html b/guide.template.html index 3de6d83..f9c73ec 100644 --- a/guide.template.html +++ b/guide.template.html @@ -23,6 +23,7 @@ BISOUS maison guide programme + carte poster contact diff --git a/index.html b/index.html index a12c381..d177b48 100644 --- a/index.html +++ b/index.html @@ -19,6 +19,7 @@ maison guide programme + carte poster contact diff --git a/poster.html b/poster.html index 7ae1ffa..1a5ccb5 100644 --- a/poster.html +++ b/poster.html @@ -17,6 +17,7 @@ maison guide programme + carte poster contact diff --git a/programme.html b/programme.html index 86596fa..d93a568 100644 --- a/programme.html +++ b/programme.html @@ -19,6 +19,7 @@ maison guide programme + carte poster contact From 967ef1bf720902bbe18062bf284c5312573e9cd6 Mon Sep 17 00:00:00 2001 From: nono-lqdn Date: Tue, 9 Jun 2026 14:43:39 +0200 Subject: [PATCH 5/8] Add map download, add guide generation to dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Dockerfile b/Dockerfile index 818cbb7..5482b4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,20 @@ FROM docker.io/nginx:1.29-alpine +RUN apk add --update --no-cache wget unzip bash pandoc sed + +RUN wget -q https://git.interhacker.space/epickiwi/2026.camp.carte/releases/download/latest/dist.zip +RUN unzip -q dist.zip -d /tmp/carte +RUN mkdir -p /usr/share/nginx/html/carte +RUN cp -r /tmp/carte/dist/* /usr/share/nginx/html/carte/ +RUN rm -rf /tmp/carte +RUN rm -rf dist.zip + +COPY guide.template.html . +COPY update-guide.sh . +RUN bash update-guide.sh + COPY *.html /usr/share/nginx/html +RUN mv guide.html /usr/share/nginx/html COPY assets /usr/share/nginx/html/assets COPY css /usr/share/nginx/html/css COPY js /usr/share/nginx/html/js From e87b436ec86d631bb7eab20b668af4f1095bdf3d Mon Sep 17 00:00:00 2001 From: nono-lqdn Date: Mon, 15 Jun 2026 11:47:27 +0200 Subject: [PATCH 6/8] Move the build actions from Forgejo actions to docker build actions --- .forgejo/workflows/build.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index bf5467e..fe5a699 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -9,19 +9,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install Pandoc - run: | - apt-get update - apt-get install -y pandoc - - - name: Generate guide.html - run: bash update-guide.sh - - - name: Install Podman - run: | - apt-get update - apt-get install -y podman - - name: Podman Login run: | echo "${{ secrets.DOCKER_PASSWORD }}" | podman login git.interhacker.space --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin From ca10d696386cd9179f8a91336aaa29579f6dd6c2 Mon Sep 17 00:00:00 2001 From: nono-lqdn Date: Wed, 1 Jul 2026 17:58:30 +0200 Subject: [PATCH 7/8] Ajout d'un bouton et d'un player audio sur la page d'acceuil pour streamer la radio de l'interhack --- assets/pause-solid-full.svg | 1 + assets/play-solid-full.svg | 1 + css/home.css | 23 +++++++++++++++++++++++ index.html | 19 +++++++++++++++---- js/radio.js | 23 +++++++++++++++++++++++ 5 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 assets/pause-solid-full.svg create mode 100644 assets/play-solid-full.svg create mode 100644 js/radio.js diff --git a/assets/pause-solid-full.svg b/assets/pause-solid-full.svg new file mode 100644 index 0000000..a45f416 --- /dev/null +++ b/assets/pause-solid-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/play-solid-full.svg b/assets/play-solid-full.svg new file mode 100644 index 0000000..460cdbb --- /dev/null +++ b/assets/play-solid-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/css/home.css b/css/home.css index 0ad352d..d6b71ec 100644 --- a/css/home.css +++ b/css/home.css @@ -157,3 +157,26 @@ font-size : 1.5em; 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } + +/* Radio Interhack */ + +#radio-player { + float: left; + z-index: 100000; + background-color: aqua; + height: 1em; + width: 1em; + position: absolute; + bottom: 1em; + right: 1em; + position: fixed; + border-radius: 10%; +} + +#radio-button { + background: none; + display: flex; + justify-content: center; + align-items: center; + border: none; +} \ No newline at end of file diff --git a/index.html b/index.html index d177b48..c96aa04 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,7 @@ + Camp Interhack @@ -110,7 +111,7 @@

C'est complet ! -
+
Nous avons reçu en amont

@@ -120,10 +121,10 @@

des dons dont nous avons besoin.

- +

- Merci !! -
+ Merci !! +
Et nous comptons sur vous pour continuer à vous mobiliser avant et durant le camp, pour que l'on puisse atteindre les 100% !

@@ -193,6 +194,16 @@

et bien d'autres !
Rejoignez le canal Matrix sur #interhack:matrix.interhacker.space

+ +
+ + + play button + +