diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-09 01:07:15 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-09 01:07:15 +0300 |
commit | 34ccc98a942098faefb5f4211b215ff9ccc7ad0e (patch) | |
tree | 7696ab4d7c8d9fb09c7e2575d482517f68824ae3 /static |
Начальный
Diffstat (limited to 'static')
-rw-r--r-- | static/.gitignore | 2 | ||||
-rw-r--r-- | static/fs.go | 6 | ||||
-rw-r--r-- | static/index.html | 13 |
3 files changed, 21 insertions, 0 deletions
diff --git a/static/.gitignore b/static/.gitignore new file mode 100644 index 0000000..682c87e --- /dev/null +++ b/static/.gitignore @@ -0,0 +1,2 @@ +places +assets
\ No newline at end of file diff --git a/static/fs.go b/static/fs.go new file mode 100644 index 0000000..b770631 --- /dev/null +++ b/static/fs.go @@ -0,0 +1,6 @@ +package static + +import "embed" + +//go:embed assets/* index.html +var FS embed.FS diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..5234688 --- /dev/null +++ b/static/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.0"> + <title>GeoGuessr</title> + <link rel="stylesheet" href="/assets/index.css"> +</head> +<body> + <div id="app"></div> +</body> +<script src="/assets/index.js"></script> +</html>
\ No newline at end of file |