add organisation status as PDF close #2

This commit is contained in:
vincent-peugnet 2025-11-20 20:40:40 +01:00
parent 2d52a7e619
commit 2b51b2b3e9
4 changed files with 20 additions and 2 deletions

View file

@ -16,3 +16,13 @@ Then, build and push to the registry:
docker build -t git.interhacker.space/interhack/camp-website-2026:latest . docker build -t git.interhacker.space/interhack/camp-website-2026:latest .
docker push git.interhacker.space/interhack/camp-website-2026:latest docker push git.interhacker.space/interhack/camp-website-2026:latest
``` ```
## generate status PDF
Status are stored in [this online pad](https://md.interhacker.space/u2VNUSO6S36xx5Ensc3FCw).
PDF can be generated thanks to `pandoc` and the good old `curl` this way:
```sh
curl -s https://md.interhacker.space/u2VNUSO6S36xx5Ensc3FCw/download | pandoc -V geometry:margin=3cm -o status.pdf
```

Binary file not shown.

View file

@ -8,8 +8,9 @@ main {
footer { footer {
display: block; display: block;
height: 100px;
text-align: center; text-align: center;
display: flex;
justify-content: space-evenly;
} }
main h1 { main h1 {

View file

@ -88,7 +88,14 @@
</section> </section>
</main> </main>
<footer> <footer>
<a href="https://git.interhacker.space/interhack/2026.camp.public.website">source</a> <div>
<h2>Site Web</h2>
<a href="https://git.interhacker.space/interhack/2026.camp.public.website">source</a>
</div>
<div>
<h2>Association</h2>
<a href="assets/Camp-Interhack-status.pdf">status</a>
</div>
</footer> </footer>
</body> </body>