Initial website commit
This commit is contained in:
12
.woodpecker.yml
Normal file
12
.woodpecker.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
when:
|
||||
branch: main
|
||||
event: push
|
||||
|
||||
steps:
|
||||
deploy:
|
||||
image: alpine
|
||||
commands:
|
||||
- echo "Deploying to /webroot..."
|
||||
- apk add --no-cache rsync
|
||||
- rsync -av --delete --exclude='.git' --exclude='.woodpecker.yml' ./ /webroot/
|
||||
- echo "Deploy complete"
|
||||
19
index.html
Normal file
19
index.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>k-boris.tech</title>
|
||||
<style>
|
||||
body { font-family: sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; background: #0f172a; color: #e2e8f0; }
|
||||
h1 { font-size: 2.5rem; letter-spacing: -0.05em; }
|
||||
p { color: #94a3b8; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align:center">
|
||||
<h1>k-boris.tech</h1>
|
||||
<p>Coming soon.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user