Files
gitea-actions-test/index.html
2025-01-09 07:21:15 +00:00

14 lines
354 B
HTML

<!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>