This commit is contained in:
parent
d658dbd674
commit
3443ed3811
5 changed files with 91 additions and 0 deletions
12
.forgejo/workflows/deploy.yml
Normal file
12
.forgejo/workflows/deploy.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: ssh-keyscan hephaestus >> ~/.ssh/known_hosts
|
||||||
|
- run: /bin/rsync -avzh ./stortissvatnet ansible@hephaestus:/var/www/stortissvatnet/
|
||||||
|
- run: /bin/rsync -avzh ./tissvasselva ansible@hephaestus:/var/www/tissvasselva/
|
BIN
stortissvatnet/image.png
Normal file
BIN
stortissvatnet/image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
39
stortissvatnet/index.html
Normal file
39
stortissvatnet/index.html
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<!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="image.png" alt="Placeholder Image">
|
||||||
|
<p>Stortissvatnet er en liten innsjø i Lierne kommune i Trøndelag. Den har utløp til <a href="https://tissvasselva.no">Tissvasselva</a></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
0
tissvasselva/image.png
Normal file
0
tissvasselva/image.png
Normal file
40
tissvasselva/index.html
Normal file
40
tissvasselva/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>Tissvasselva!</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="image.png" alt="Placeholder Image">
|
||||||
|
<p>Tissvasselva er en elv i Lierne kommune i Trøndelag, den har innløp fra <a href="https://stortissvatnet.no">Stortissvatnet</a></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue