This commit is contained in:
parent
6549137e92
commit
5b2bdbbeef
3 changed files with 43 additions and 2 deletions
|
@ -8,5 +8,6 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: ssh-keyscan hephaestus >> ~/.ssh/known_hosts
|
- run: ssh-keyscan hephaestus >> ~/.ssh/known_hosts
|
||||||
- run: /bin/rsync -avzh ./stortissvatnet/* ansible@hephaestus:/var/www/stortissvatnet/
|
- run: /bin/rsync -avzh ./stortissvatnet/* hephaestus@hephaestus:/var/www/stortissvatnet/
|
||||||
- run: /bin/rsync -avzh ./tissvasselva/* ansible@hephaestus:/var/www/tissvasselva/
|
- run: /bin/rsync -avzh ./tissvasselva/* hephaestus@hephaestus:/var/www/tissvasselva/
|
||||||
|
- run: /bin/rsync -avzh ./blobb.no/* hephaestus@hephaestus:/var/www/blobb.no/
|
BIN
blobb.no/blobb.gif
Normal file
BIN
blobb.no/blobb.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
40
blobb.no/index.html
Normal file
40
blobb.no/index.html
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Stortissvatnet!</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<img src="blobb.gif" alt="Placeholder Image">
|
||||||
|
<p>Blubb</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue