diff options
Diffstat (limited to 'views/layout.ejs')
| -rw-r--r-- | views/layout.ejs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/views/layout.ejs b/views/layout.ejs new file mode 100644 index 0000000..48f2052 --- /dev/null +++ b/views/layout.ejs @@ -0,0 +1,17 @@ +<!doctype html> +<html> +<head> +<meta charset="utf-8"> +<meta name="description" content="Where's the Pixel?"> +<title>warpFX</title> +<link href="/css/warpfx.css" media="screen, projection" rel="stylesheet" type="text/css" /> +<script type="text/javascript" src="/js/util.js"></script> +<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js"></script> +<script src="/socket.io/socket.io.js"></script> +</head> +<body> + + <%- body %> + +</body> +</html> |
