14 lines
354 B
HTML
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> |