aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-08-02 20:54:44 -0400
committerAndrew Lee <alee14498@gmail.com>2019-08-02 20:54:44 -0400
commitb0b971aba04a848c7ffa155cb281ea8fd9b2292e (patch)
tree86e8757fa4625f8ed35a624794ed05d9b521481d /views
parentcc2c3863b0a3ec26e6610163c00b5f8f6aedc716 (diff)
downloadalp-website-b0b971aba04a848c7ffa155cb281ea8fd9b2292e.tar.gz
alp-website-b0b971aba04a848c7ffa155cb281ea8fd9b2292e.tar.bz2
alp-website-b0b971aba04a848c7ffa155cb281ea8fd9b2292e.zip
Added teams in about and some beautifying
Diffstat (limited to 'views')
-rw-r--r--views/404.ejs1
-rw-r--r--views/about.ejs25
-rw-r--r--views/includes/footer.ejs6
-rw-r--r--views/index.ejs4
-rw-r--r--views/projects.ejs18
5 files changed, 47 insertions, 7 deletions
diff --git a/views/404.ejs b/views/404.ejs
index 4bdc4a1..720bd87 100644
--- a/views/404.ejs
+++ b/views/404.ejs
@@ -5,6 +5,7 @@
<title><%= title %></title>
</head>
<body>
+ <% include ./includes/navbar %>
<center>
<h1>404 - Not Found</h1>
<h2>Oops, seems like that page isn't found!</h2>
diff --git a/views/about.ejs b/views/about.ejs
index 87485be..452cd82 100644
--- a/views/about.ejs
+++ b/views/about.ejs
@@ -15,10 +15,27 @@
</div>
<div class="container">
<h1>History</h1>
- <p>Alee Productions started in 2016. It used to be called "AleeCorp" and used to make just software but over time it started branching to other things like making games and videos.
- In late 2018, AleeCorp merged with Universe and some project merged but due to a community conflict during October in that year, Universe and AleeCorp splited. In 2019 however, AleeCorp renamed to Alee Productions just to make the company more professional.</p>
-
- </div>
+ <p>Alee Productions started in 2016. It used to be called "AleeCorp" and used to make just software but over
+ time it started branching to other things like making games and videos.
+ In late 2018, AleeCorp merged with Universe and some project merged but due to a community conflict during
+ October in that year, Universe and AleeCorp splited. In 2019 however, AleeCorp renamed to Alee Productions
+ just to make the company more professional.</p>
+ <h1>Team</h1>
+ <div class="card text-white success-color-dark mb-3" style="max-width: 20rem;">
+ <div class="card-body">
+ <h5 class="card-title">Community Team</h5>
+ <p class="card-text text-white">
+ <ul>
+ <li>Travis#1777 (Admin)</li>
+ <li>Inkydink#9098 (Admin)</li>
+ <li>The Pixel Polygon#2069 (Admin)</li>
+ <li>Sylv#7596 (Moderator)</li>
+ <li>jtsshieh#6424 (Moderator)</li>
+
+ </ul>
+ </p>
+ </div>
+ </div>
<% include ./includes/footer %>
</body>
diff --git a/views/includes/footer.ejs b/views/includes/footer.ejs
index 56a654c..50e53ec 100644
--- a/views/includes/footer.ejs
+++ b/views/includes/footer.ejs
@@ -1,8 +1,12 @@
+<footer class="page-footer fixed-bottom font-small green">
+ <div class="footer-copyright text-center py-3">© Copyright 2019, Alee Productions. Powered by ExpressJS and EJS.</div>
+</footer>
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
-<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
+<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js">
+</script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.8.7/js/mdb.min.js"></script> \ No newline at end of file
diff --git a/views/index.ejs b/views/index.ejs
index 55bfaed..e62eff6 100644
--- a/views/index.ejs
+++ b/views/index.ejs
@@ -8,9 +8,9 @@
<body>
<% include ./includes/navbar %>
- <div class="jumbotron special-color">
+ <div class="jumbotron special-color bounceIn">
<h2 class="display-4">Hello! Welcome to Alee Productions.</h2>
- <p class="lead">We are a very small produtions company.</p>
+ <p class="lead">We are a very small productions company.</p>
<hr class="my-4">
<p>If you want to know more about us click the button down below.</p>
<a class="btn btn-green btn-lg" href="/about" role="button">Learn more</a>
diff --git a/views/projects.ejs b/views/projects.ejs
new file mode 100644
index 0000000..02c98ff
--- /dev/null
+++ b/views/projects.ejs
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <% include ./includes/header %>
+ <title><%= title %></title>
+</head>
+
+<body>
+ <% include ./includes/navbar %>
+ <div class="jumbotron special-color">
+ <h2 class="display-4">Projects</h2>
+ <p class="lead">This is the projects that we are currently working on.</p>
+ </div>
+ <% include ./includes/footer %>
+</body>
+
+</html> \ No newline at end of file