aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/index.ejs26
-rw-r--r--views/partials/footer.ejs2
-rw-r--r--views/partials/header.ejs33
3 files changed, 61 insertions, 0 deletions
diff --git a/views/index.ejs b/views/index.ejs
new file mode 100644
index 0000000..b618586
--- /dev/null
+++ b/views/index.ejs
@@ -0,0 +1,26 @@
+<%- include("./partials/header.ejs", {title: "Home"}) %>
+<div id="hero">
+ <div id="hero-inner">
+ <div>
+ <div id="hero-title-1">We are The Cuties!</div>
+ <div id="hero-title-2">The two pegasi making stuff with their wings</div>
+ </div>
+ </div>
+</div>
+<div id="hero-skipper">
+ <div id="intro-bar"></div>
+ <br>
+ <img src="/assets/ponies.png" class="home-people-image">
+ <div class="home-people-text">Stronger when we're together</div>
+
+ <br>
+ <div class="container">
+ <p><b>Welcome to our shared website!</b></p>
+ <p>This is where we talk about our common projects and (more generally) the kind of stuff we do together every day. We are both plural pegasus ponies who dream of living in Equestria (and/or together) and being happy. Hope you like our website!</p>
+
+ <p><b>The kind of stuff we do...</b></p>
+ <p><i>Nothing for now -_-, but feel free to check later!</i></p>
+ </div>
+</div>
+<script src="/assets/scroll.js"></script>
+<%- include("./partials/footer.ejs") %> \ No newline at end of file
diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs
new file mode 100644
index 0000000..691287b
--- /dev/null
+++ b/views/partials/footer.ejs
@@ -0,0 +1,2 @@
+</body>
+</html> \ No newline at end of file
diff --git a/views/partials/header.ejs b/views/partials/header.ejs
new file mode 100644
index 0000000..bb1a1ec
--- /dev/null
+++ b/views/partials/header.ejs
@@ -0,0 +1,33 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport"
+ content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <link rel="stylesheet" href="/bootstrap/styles.css">
+ <link rel="stylesheet" href="/assets/custom.css">
+ <script src="/bootstrap/script.js"></script>
+ <title><%= title %> - The Cuties</title>
+</head>
+<body>
+ <nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top">
+ <div class="container-fluid">
+ <a class="navbar-brand" href="/">The Cuties</a>
+
+ <ul class="navbar-nav">
+ <li class="nav-item">
+ <a class="nav-link" href="/projects">Projects</a>
+ </li>
+ <li class="nav-item">
+ <a class="nav-link" href="/about">About Us</a>
+ </li>
+ <li class="nav-item">
+ <a class="nav-link" href="/plurality">Plurality</a>
+ </li>
+ <li class="nav-item">
+ <a class="nav-link" href="/servers">Random Server Stuff</a>
+ </li>
+ </ul>
+ </div>
+ </nav> \ No newline at end of file