diff options
author | Marvin Borner | 2020-07-18 15:07:19 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 15:07:19 +0200 |
commit | 476715384f4a5d0b7d887961b43b7aa271c08495 (patch) | |
tree | 32501aca89192e84a57c5f10eef505226205e75e /src/public | |
parent | a9615553221706967527ee51e5387b16cf12cd12 (diff) |
WHO TH INDENTS WITH 2 SPACES YOU FRIGGIN DENOSAURS
Diffstat (limited to 'src/public')
-rw-r--r-- | src/public/index.html | 19 | ||||
-rw-r--r-- | src/public/test.html | 13 |
2 files changed, 23 insertions, 9 deletions
diff --git a/src/public/index.html b/src/public/index.html index 25eaea5..99a87cd 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -1,10 +1,11 @@ <!DOCTYPE html> -<html lang="en"> -<head> - <meta charset="UTF-8"> - <title>Title</title> -</head> -<body> - <h1>Home :)</h1> -</body> -</html>
\ No newline at end of file +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <title>Index</title> + </head> + <body> + body + </body> +</html> diff --git a/src/public/test.html b/src/public/test.html new file mode 100644 index 0000000..b188db3 --- /dev/null +++ b/src/public/test.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <title>Title</title> + </head> + <body> + <h1>Home :)</h1> + <% if (name) { %> + <h1>hello, <%= name %>!</h1> + <% } %> + </body> +</html> |