Files
vctp2/components/home/home.templ
Nathan Coad b63e4482b7
Some checks failed
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / End-to-End (push) Waiting to run
CI / Publish Docker (push) Blocked by required conditions
continuous-integration/drone/push Build is failing
really poor templ attempt
2024-09-13 17:13:21 +10:00

18 lines
624 B
Plaintext

package home
// Define the Home template, accepting a BuildInfo struct.
templ Home(buildTime string, sha1ver string, goVersion string) {
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Information</title>
</head>
<body>
<h1>Build Information</h1>
<p><strong>Build Time:</strong> {buildTime}</p>
<p><strong>SHA1 Version:</strong> {sha1ver}</p>
<p><strong>Go Runtime Version:</strong> {goVersion}</p>
</body>
</html>
}