aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-08-14 00:02:07 -0400
committerAndrew Lee <alee14498@gmail.com>2019-08-14 00:02:07 -0400
commit9e9e6d5673d03d7d1e55f3a592f4d2534dffb4ff (patch)
treeea2bf902f18cca1e274a23242e32f8defc5b115f
parent28d318a54ba77dc381ba0c92f9adc7b29e0abac3 (diff)
downloadalp-website-9e9e6d5673d03d7d1e55f3a592f4d2534dffb4ff.tar.gz
alp-website-9e9e6d5673d03d7d1e55f3a592f4d2534dffb4ff.tar.bz2
alp-website-9e9e6d5673d03d7d1e55f3a592f4d2534dffb4ff.zip
Tweaking
-rw-r--r--README.md2
-rw-r--r--public/js/yt-list-videos.js4
-rw-r--r--views/about.ejs6
-rw-r--r--views/includes/footer.ejs2
-rw-r--r--views/index.ejs19
-rw-r--r--views/projects.ejs4
6 files changed, 17 insertions, 20 deletions
diff --git a/README.md b/README.md
index 916fb10..6ffd6de 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Alee Production Website
The official website for Alee Productions.
-Written in Express.JS, EJS and MDBootstrap
+Written in Express.JS, EJS and Material Design Bootstrap.
Licensed with GPL-3.0 \ No newline at end of file
diff --git a/public/js/yt-list-videos.js b/public/js/yt-list-videos.js
index 42deb0c..799dd29 100644
--- a/public/js/yt-list-videos.js
+++ b/public/js/yt-list-videos.js
@@ -1,10 +1,10 @@
let channelID = 'UCNRn4YDPCCWSEl3CT7eWorA';
-let apiKey = ""; // Note to hide this
+let apiKey = "nope";
let vidHeight = 400;
let vidWidth = 500;
-let vidMaxResult = 5; // Maximum can be 50
+let vidMaxResult = 5;
$(document).ready(function () {
$.get("https://www.googleapis.com/youtube/v3/channels", {
diff --git a/views/about.ejs b/views/about.ejs
index 2f28498..d5ed41f 100644
--- a/views/about.ejs
+++ b/views/about.ejs
@@ -10,7 +10,7 @@
<% include ./includes/navbar %>
<div class="jumbotron special-color">
<h2 class="display-4">About Alee Productions</h2>
- <p class="lead">Alee Productions is a productions company by Andrew Lee that focuses on making videos and games.
+ <p class="lead">Alee Productions is a productions company by Andrew Lee that focuses on making videos and software.
</p>
</div>
<div class="container">
@@ -29,7 +29,7 @@
sharing
it to the public and to make it as a career.</li>
<br>
- <li>Q: Why did you call this Alee Productions?</li>
+ <li>Q: Why did you call this productions company Alee Productions?</li>
<li>A: As you know my name is Andrew Lee and my name starts with an "A" and combine it with "Lee" you get "Alee". :)</li>
</h4>
</ul>
@@ -49,6 +49,8 @@
</p>
</div>
</div>
+ <h1>Credits</h1>
+ <p>This project is open source meaning that you can help <a href="https://github.com/aleeproductions/website">contribute</a> to this website.</p>
</div>
<% include ./includes/scripts %>
<% include ./includes/footer %>
diff --git a/views/includes/footer.ejs b/views/includes/footer.ejs
index ac519d1..1e2ad39 100644
--- a/views/includes/footer.ejs
+++ b/views/includes/footer.ejs
@@ -1,3 +1,3 @@
<footer class="page-footer mt-5 font-small green">
- <div class="footer-copyright text-center py-3">© Copyright 2016-2019, Alee Productions. Powered by ExpressJS, EJS and Material Design Bootstrap.</div>
+ <div class="footer-copyright text-center py-3">© Copyright 2016-2019, Alee Productions. Licensed with GPL-3.0</div>
</footer> \ No newline at end of file
diff --git a/views/index.ejs b/views/index.ejs
index 39d4fb3..2264fa5 100644
--- a/views/index.ejs
+++ b/views/index.ejs
@@ -18,7 +18,7 @@
</div>
<div class="container">
- <center><h2>Our Products</h2></center>
+ <h2 class="text-center mb-3">Our Products</h2>
<!--Carousel Wrapper-->
<div id="carousel-product" class="carousel slide carousel-slide" data-ride="carousel">
<!--Indicators-->
@@ -84,23 +84,21 @@
<!--/.Carousel Wrapper-->
<br>
<!--Community, Video and Software-->
- <div class="row">
+ <!-- If anyone knows how to fix this please tell me thanks -Alee :)-->
+ <div class="row d-flex justify-content-center">
<div class="col-sm">
- <center>
<div class="view overlay">
<a href="https://discord.gg/EFhRDqG">
- <img src="/img/users-solid.svg" height=220px>
+ <img class="text-center" src="/img/users-solid.svg" height=220px>
<div class="mask flex-center rgba-green-strong">
<p class="white-text">Community</p>
</div>
</a>
</div>
<br>
- Community
- </center>
+ <p class="text-center">Community</p>
</div>
<div class="col-sm">
- <center>
<div class="view overlay">
<a href="https://www.youtube.com/channel/UC9CIwdleH3m_PV35QqULWzA">
<img src="/img/video-solid.svg" height=220px>
@@ -110,11 +108,9 @@
</a>
</div>
<br>
- Video
- </center>
+ <p class="text-center">Video</p>
</div>
<div class="col-sm">
- <center>
<div class="view overlay">
<a href="https://github.com/aleeproductions">
<img src="/img/file-code-solid.svg" height=220px>
@@ -124,8 +120,7 @@
</a>
</div>
<br>
- Software
- </center>
+ <p class="text-center">Software</p>
</div>
</div>
</div>
diff --git a/views/projects.ejs b/views/projects.ejs
index a30634c..a3ef04a 100644
--- a/views/projects.ejs
+++ b/views/projects.ejs
@@ -13,7 +13,7 @@
<p class="lead">This is the projects that we are currently working on.</p>
</div>
<div class="container">
- <center><h1 class="mb-5">Software</h1></center>
+ <h1 class="mb-5 text-center">Software/Games</h1>
<!-- Software Cards -->
<div class="row d-flex justify-content-center">
@@ -38,7 +38,7 @@
</div>
</div>
<!--/.Software Cards -->
- <center><h1 class="mt-5 mb-5">Videos</h1></center>
+ <h1 class="mt-5 mb-5 text-center">Videos</h1>
<ul id="yt-results" class="yt" style="list-style-type:none;"></ul>
</div>
<% include ./includes/scripts %>