diff options
Diffstat (limited to 'views')
| -rw-r--r-- | views/main.ejs | 3 | ||||
| -rw-r--r-- | views/partials/bottom.ejs | 2 | ||||
| -rw-r--r-- | views/partials/icons.ejs | 4 | ||||
| -rw-r--r-- | views/partials/meta.ejs | 16 | ||||
| -rw-r--r-- | views/partials/stylesheets.ejs | 4 | ||||
| -rw-r--r-- | views/partials/top.ejs | 16 |
6 files changed, 45 insertions, 0 deletions
diff --git a/views/main.ejs b/views/main.ejs new file mode 100644 index 0000000..c5f2d04 --- /dev/null +++ b/views/main.ejs @@ -0,0 +1,3 @@ +<% include partials/top %> +YOO BOII! +<% include partials/bottom %> diff --git a/views/partials/bottom.ejs b/views/partials/bottom.ejs new file mode 100644 index 0000000..308b1d0 --- /dev/null +++ b/views/partials/bottom.ejs @@ -0,0 +1,2 @@ +</body> +</html> diff --git a/views/partials/icons.ejs b/views/partials/icons.ejs new file mode 100644 index 0000000..c8e72f9 --- /dev/null +++ b/views/partials/icons.ejs @@ -0,0 +1,4 @@ + <link rel="image_src" href=""/> + <link rel="shortcut icon" href="/favicon.ico"/> + <link rel="apple-touch-icon" href="" /> + <link rel="apple-touch-icon-precomposed" href="" /> diff --git a/views/partials/meta.ejs b/views/partials/meta.ejs new file mode 100644 index 0000000..f4d29d9 --- /dev/null +++ b/views/partials/meta.ejs @@ -0,0 +1,16 @@ + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/> + <meta name="apple-mobile-web-app-status-bar-style" content="black"> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> + <meta name="description" content="" /> + <meta property="og:title" content=""/> + <meta property="og:type" content="website"/> + <meta property="og:image" content="http://"/> + <meta property="og:url" content="http://"/> + <meta property="og:description" content="" /> + <meta property="og:site_name" content="" /> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> diff --git a/views/partials/stylesheets.ejs b/views/partials/stylesheets.ejs new file mode 100644 index 0000000..9b51d2f --- /dev/null +++ b/views/partials/stylesheets.ejs @@ -0,0 +1,4 @@ + <link rel="stylesheet" type="text/css" href="css/animate.css"> + <link rel="stylesheet" type="text/css" href="css/colors.css"> + <link rel="stylesheet" type="text/css" href="css/unsemantic-grid-responsive-tablet.css"> + <link rel="stylesheet" type="text/css" href="css/site.css"> diff --git a/views/partials/top.ejs b/views/partials/top.ejs new file mode 100644 index 0000000..8e3ef5e --- /dev/null +++ b/views/partials/top.ejs @@ -0,0 +1,16 @@ +<!doctype html> +<html> +<head> + <title> + <% if(typeof(name) !== 'undefined'){ %> + <%= name %> + <%} %> + <% if(typeof(description) !== 'undefined'){ %> + <%= description %> + <%} %> + </title> +<% include meta %> +<% include icons %> +<% include stylesheets %> +</head> +<body> |
