screenshots
All checks were successful
/ Build BaseBand Website (push) Successful in 11s

This commit is contained in:
Daniella / Tove 2024-10-14 16:29:13 +02:00
parent cd22b0f1db
commit 08f6693925
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
8 changed files with 22 additions and 0 deletions

View file

@ -23,3 +23,11 @@ Ednieva is currently made for game version 1.20.6.
You can download the loaders directly from here using the buttons above. However, there is a more extensive
API for querying or downloading the most recent version of any component:<br>
<a class=btn href="https://download.baseband.com.de">download.baseband.com.de</a><br>
<br>
<br>
<h2> Screenshots </h2>
<img class=ss src="/screenshots/ingame.png">
<img class=ss src="/screenshots/selection.png">
<img class=ss src="/screenshots/seedoverlay/generating.png">
<img class=ss src="/screenshots/seedoverlay/hut.png">
<img class=ss src="/screenshots/seedoverlay/underground.png">

BIN
screenshot_ingame.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 725 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB

BIN
screenshot_selection.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View file

@ -1,6 +1,8 @@
"#httpserver/base.spl" import
"#httpserver/static.spl" import
1024 64 * net:http:server:=bufsize
func destub { html | with html title ;
stub.html
:replace<"+title" title>
@ -44,6 +46,11 @@ func handle-client { | with client ;
:serve-html-string<index.html "/">
:serve-html-string<features.html "/features">
:serve-file-cached<"style.css" "/style.css" "text/css">
:serve-file-cached<"screenshot_ingame.png" "/screenshots/ingame.png" "image/png">
:serve-file-cached<"screenshot_selection.png" "/screenshots/selection.png" "image/png">
:serve-file-cached<"screenshot_seedoverlay_generating.png" "/screenshots/seedoverlay/generating.png" "image/png">
:serve-file-cached<"screenshot_seedoverlay_hut.png" "/screenshots/seedoverlay/hut.png" "image/png">
:serve-file-cached<"screenshot_seedoverlay_underground.png" "/screenshots/seedoverlay/underground.png" "image/png">
:is-open
if {
404.html client:write-head<404 "Not found">:write-html-body:finish;

View file

@ -70,3 +70,10 @@ div.error {
padding: 15px;
margin: 15px;
}
img.ss {
margin: auto;
display: inline-block;
width: 45%;
margin: 0.5em;
}