diff options
| author | mihna123 <mihailonvojinovic@gmail.com> | 2026-08-21 20:09:08 +0200 |
|---|---|---|
| committer | mihna123 <mihailonvojinovic@gmail.com> | 2026-08-21 20:09:08 +0200 |
| commit | 9db000f9ccfd08b12fd2ed859b71c33e6ca165c5 (patch) | |
| tree | 21bf85bc63c6fe1a3f16b06e45dc73ffa64e81d6 /internal/web/templates/index.html | |
| parent | dd4244db9abaa69cdcacbeccc8b3770f3142e91c (diff) | |
| download | openstore-9db000f9ccfd08b12fd2ed859b71c33e6ca165c5.tar.gz openstore-9db000f9ccfd08b12fd2ed859b71c33e6ca165c5.zip | |
server: serve html template from embedded fs
Diffstat (limited to 'internal/web/templates/index.html')
| -rw-r--r-- | internal/web/templates/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/web/templates/index.html b/internal/web/templates/index.html new file mode 100644 index 0000000..24d8c5e --- /dev/null +++ b/internal/web/templates/index.html @@ -0,0 +1,13 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>OpenStore</title> + <link href="css/style.css" rel="stylesheet" /> + </head> + <body> + <h1>Welcome to openstore!</h1> + <p>Work in progress...</p> + </body> +</html> |
