diff options
| -rw-r--r-- | .idea/discord.xml | 9 | ||||
| -rw-r--r-- | public/css/style.scss | 2 | ||||
| -rw-r--r-- | public/js/transition.js | 2 | ||||
| -rw-r--r-- | views/about.ejs | 2 | ||||
| -rw-r--r-- | views/community/rules.ejs | 4 | ||||
| -rw-r--r-- | views/includes/footer.ejs | 2 | ||||
| -rw-r--r-- | views/projects.ejs | 2 |
7 files changed, 18 insertions, 5 deletions
diff --git a/.idea/discord.xml b/.idea/discord.xml new file mode 100644 index 0000000..59b11d1 --- /dev/null +++ b/.idea/discord.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="DiscordProjectSettings"> + <option name="show" value="true" /> + </component> + <component name="ProjectNotificationSettings"> + <option name="askShowProject" value="false" /> + </component> +</project>
\ No newline at end of file diff --git a/public/css/style.scss b/public/css/style.scss index 4ecceb3..6ebfa9e 100644 --- a/public/css/style.scss +++ b/public/css/style.scss @@ -24,7 +24,7 @@ ul { text-align: center; } .none { - list-style-type:none; + list-style-type: none; } } diff --git a/public/js/transition.js b/public/js/transition.js index 395c2f2..25c62e1 100644 --- a/public/js/transition.js +++ b/public/js/transition.js @@ -11,7 +11,7 @@ $(document).ready(function() { loadingClass: 'animsition-loading', loadingInner: '', // e.g '<img src="loading.svg" />' timeout: true, - timeoutCountdown: 2000, + timeoutCountdown: 5000, onLoadEvent: true, browser: [ 'animation-duration', '-webkit-animation-duration'], // "browser" option allows you to disable the "animsition" in case the css property in the array is not supported by your browser. diff --git a/views/about.ejs b/views/about.ejs index b1f863e..6fee2c4 100644 --- a/views/about.ejs +++ b/views/about.ejs @@ -50,9 +50,11 @@ </p> </div> </div> + <div id="credits"> <h1>Credits</h1> <p>Website is powered by Express.JS, EJS and Material Design Bootstrap.</p> <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> </div> <% include ./includes/scripts %> <% include ./includes/footer %> diff --git a/views/community/rules.ejs b/views/community/rules.ejs index 302632a..562fdae 100644 --- a/views/community/rules.ejs +++ b/views/community/rules.ejs @@ -28,8 +28,8 @@ <div id="tiers"> <h1>Tiers</h1> <ul class="none"> - <li>Normal Tier - It means it is not too severe and it there’s nothing to worry about.</li> - <li>Excessive Tier - It means that if a rule is broken that’s severe it will be taken action immediately and will be stored in the punishment log.</li> + <li><a class="white-text" href="#normal-tier">Normal Tier</a> - It means it is not too severe and it there’s nothing to worry about.</li> + <li><a class="white-text" href="#excessive-tier">Excessive Tier</a> - It means that if a rule is broken that’s severe it will be taken action immediately and will be stored in the punishment log.</li> </ul> </div> <div id="normal-tier"> diff --git a/views/includes/footer.ejs b/views/includes/footer.ejs index 4cc1d7d..a26d20f 100644 --- a/views/includes/footer.ejs +++ b/views/includes/footer.ejs @@ -1,5 +1,5 @@ <footer class="page-footer mt-5 font-small green"> - <div class="footer-copyright text-center py-3">© Copyright 2016-2019, Alee Productions. Licensed with GPL-3.0</div> + <div class="footer-copyright text-center py-3">© Copyright 2016-2019, Alee Productions Inc. Licensed with <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL-3.0</a> and view <a href="/about#credits">credits</a> to see how this website is built.</div> </footer> <div class="alert alert-warning fixed-bottom m-0 alert-dismissible fade show" role="alert"> Please note that this website is under active development and bugs may occur.<br>If there's any, report it to the <a href="https://github.com/aleeproductions/website">GitHub</a> repo. diff --git a/views/projects.ejs b/views/projects.ejs index bb3e4f2..498dd4a 100644 --- a/views/projects.ejs +++ b/views/projects.ejs @@ -52,8 +52,10 @@ </table> </div> <!--/.Software Cards --> + <!-- Disabled for now.... <h1 class="mt-3 mb-2 text-center">Videos</h1> <ul id="yt-results" class="yt none"></ul> + --> </div> <% include ./includes/scripts %> <script> |
