really poor templ attempt
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

This commit is contained in:
2024-09-13 17:13:21 +10:00
parent 49ddd56e3d
commit b63e4482b7
8 changed files with 86 additions and 187 deletions

View File

@@ -1,9 +1,18 @@
package home
templ Home() {
<div class="text-center">
<h1 class="text-5xl font-bold">Welcome!</h1>
<p class="text-indigo-200 mt-4">This is a simple home screen.</p>
<p class="text-indigo-200 mt-4">{ buildTime }</p>
</div>
}
// 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>
}