Files
Gitea-docker-runner-test/index.html
Grzegorz Matoga 7f25427916
Some checks failed
Docker Build and Push Demo / Build-Docker-Image (push) Has been cancelled
feat: add initial HTML and CSS files for Gitea Pages
2025-07-25 02:58:46 +02:00

31 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello from Gitea Pages!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>🎉 Hello from Gitea Pages!</h1>
<p>This page is served by Codeberg Pages Server from your Gitea repository.</p>
<p>Built by Gitea Actions and deployed automatically! 🚀</p>
<div class="info">
<h2>How it works:</h2>
<ul>
<li>Push to the <code>pages</code> branch</li>
<li>Pages server automatically serves your content</li>
<li>Access via: <code>username.eurekin.pl</code> or <code>eurekin.pl/username/repo</code></li>
</ul>
</div>
<div class="docker-info">
<h2>🐳 Docker Image Info</h2>
<p>Pull our Docker image:</p>
<pre><code>docker pull git.eurekin.pl/eurekin.pl_cloud/hello-gitea:latest</code></pre>
</div>
</div>
</body>
</html>