summaryrefslogtreecommitdiff
path: root/internal/web/templates
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-08-21 22:00:13 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-08-21 22:00:13 +0200
commite7fc0e9d5d116ba7337ae4f7ed032e1752db75f0 (patch)
treee1886b9a84dfdcc985c1741478cb66e1783b1241 /internal/web/templates
parent04914cd4e15a00234f181ea737d0c53043827fc1 (diff)
downloadopenstore-e7fc0e9d5d116ba7337ae4f7ed032e1752db75f0.tar.gz
openstore-e7fc0e9d5d116ba7337ae4f7ed032e1752db75f0.zip
server: use server config to render the index template
Diffstat (limited to 'internal/web/templates')
-rw-r--r--internal/web/templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/web/templates/index.html b/internal/web/templates/index.html
index 24d8c5e..54630e7 100644
--- a/internal/web/templates/index.html
+++ b/internal/web/templates/index.html
@@ -3,11 +3,11 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>OpenStore</title>
+ <title>{{ .Name }}</title>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
- <h1>Welcome to openstore!</h1>
+ <h1>Welcome to {{ .Name }}!</h1>
<p>Work in progress...</p>
</body>
</html>