diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-11-26 13:55:55 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-11-26 13:55:55 +0400 |
| commit | 446602fe336ad1c2a23e3d50d7cd1d1356fcc9de (patch) | |
| tree | 74b8a1ca93c17d22f7876f6aba80ee10c3851d3b /templates | |
Initial commit
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/hello.html | 9 | ||||
| -rw-r--r-- | templates/index.html | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/templates/hello.html b/templates/hello.html new file mode 100644 index 0000000..cb0681d --- /dev/null +++ b/templates/hello.html @@ -0,0 +1,9 @@ +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Document</title> +</head> +<body> + Hello! +</body> +</html>
\ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..2f82895 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,9 @@ +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Document</title> +</head> +<body> + This is index page +</body> +</html>
\ No newline at end of file |