29 lines
749 B
HTML
29 lines
749 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Go Server Hello</title>
|
|
|
|
<!-- Link to the external CSS file -->
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Hello from Go Server</h1>
|
|
<p>The current time is: <span id="time"></span></p>
|
|
</div>
|
|
|
|
<script>
|
|
// Fetch current time from the /time endpoint
|
|
fetch('/time')
|
|
.then(response => response.text())
|
|
.then(time => {
|
|
document.getElementById('time').textContent = time;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|