common: adding overview images

This commit is contained in:
Sheldan
2024-04-01 13:17:41 +02:00
parent ddc3d4bb11
commit 527b0f1edf
4 changed files with 10 additions and 2 deletions

View File

@@ -42,6 +42,8 @@ jobs:
working-directory: recBubbles
- name: Move index
run: cp index.html dist/
- name: Move overview images
run: mkdir -p dist/img && cp img/* dist/img
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact

BIN
img/orbits.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
img/recBubbles.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 KiB

View File

@@ -1,9 +1,15 @@
<html>
<head>
<title>Canvas stuff</title>
<style>
.preview {
height: 250px;
width: 250px;
}
</style>
</head>
<body>
<a href="/orbits">Simulation of the solar system</a>
<a href="/recBubbles">Recursive bubbles</a>
<a href="/orbits"><img src="img/orbits.png" alt="Orbits" class="preview" title="orbits"></a> <br>
<a href="/recBubbles"><img src="img/recBubbles.png" alt="Recursive bubbles" class="preview" title="recBubbles"></a>
</body>
</html>