add posters

This commit is contained in:
2025-04-15 19:12:00 +02:00
parent c66b02d19a
commit 854e5432b5
3 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
PAGES := index.html 404.html info.html PAGES := index.html 404.html info.html
SHARED_FILES := stallman.webp stallman_2024.webp favicon.ico poster.webp \ SHARED_FILES := stallman.webp stallman_2024.webp favicon.ico \
poster_cz.webp poster_en.webp poster_cz.jpg poster_en.jpg \
moon.svg sun.svg narrow_light.svg narrow_dark.svg wide_light.svg wide_dark.svg lang_cz.svg lang_en.svg \ moon.svg sun.svg narrow_light.svg narrow_dark.svg wide_light.svg wide_dark.svg lang_cz.svg lang_en.svg \
styles.css icons.css \ styles.css icons.css \
countdown.js theme.js lang.js countdown.js theme.js lang.js
@@ -42,6 +43,14 @@ dst/%.js: scripts/%.js
@mkdir -p $(@D) @mkdir -p $(@D)
ln -f $< $@ ln -f $< $@
dst/poster_%.webp: images/poster_%.png
@mkdir -p $(@D)
magick $< -resize 2000x2000 $@
dst/poster_%.jpg: images/poster_%.png
@mkdir -p $(@D)
magick $< -resize 2000x2000 $@
dst/%.webp: images/%.jpg dst/%.webp: images/%.jpg
@mkdir -p $(@D) @mkdir -p $(@D)
magick $< $@ magick $< $@

BIN
images/poster_cz.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

BIN
images/poster_en.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB