Add index.html

This commit is contained in:
2025-01-09 07:21:15 +00:00
commit ecd1ee77b6

14
index.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Test Static Site</title>
</head>
<body>
<h1>Hello from Gitea Actions!</h1>
<p>If you see this, the deployment worked!</p>
<p>Deployed at: <span id="timestamp"></span></p>
<script>
document.getElementById('timestamp').textContent = new Date().toLocaleString();
</script>
</body>
</html>