diff options
author | LarsVomMars | 2020-07-30 19:55:01 +0200 |
---|---|---|
committer | LarsVomMars | 2020-07-30 19:55:29 +0200 |
commit | f5f651d5180ddd12c57288d534129c8b00ff3162 (patch) | |
tree | bfa0de73233d9871d0efe17a585c1a1add79cb9a /src/views/test.ejs | |
parent | a937e79d29685d76af6138191f553fc82cbd2b1a (diff) |
Added font
Diffstat (limited to 'src/views/test.ejs')
-rw-r--r-- | src/views/test.ejs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/views/test.ejs b/src/views/test.ejs new file mode 100644 index 0000000..b188db3 --- /dev/null +++ b/src/views/test.ejs @@ -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> |