diff options
| author | Andrew Lee <alee14498@gmail.com> | 2019-08-12 11:59:43 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@gmail.com> | 2019-08-12 11:59:43 -0400 |
| commit | 4c04dcdf189dc6b665bf4960317f93923f58cce5 (patch) | |
| tree | 93389374a53f0adc333d9a02aec60c67a58caac5 /views | |
| parent | 557e496d3c8e41cc7c98bee5d425315922984056 (diff) | |
| download | alp-website-4c04dcdf189dc6b665bf4960317f93923f58cce5.tar.gz alp-website-4c04dcdf189dc6b665bf4960317f93923f58cce5.tar.bz2 alp-website-4c04dcdf189dc6b665bf4960317f93923f58cce5.zip | |
Added the foundations for the blog, changed index and refactoring some code
Diffstat (limited to 'views')
| -rw-r--r-- | views/blog.ejs | 19 | ||||
| -rw-r--r-- | views/index.ejs | 74 | ||||
| -rw-r--r-- | views/projects.ejs | 1 |
3 files changed, 87 insertions, 7 deletions
diff --git a/views/blog.ejs b/views/blog.ejs new file mode 100644 index 0000000..ee21e43 --- /dev/null +++ b/views/blog.ejs @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + +<head> + <% include ./includes/header %> +</head> + +<body> + <% include ./includes/navbar %> + <div class="jumbotron special-color"> + <h2 class="display-4">Blog</h2> + <p class="lead">Where we post updates on products, this website and etc.</p> + </div> + <center><h1>Notice: We are currently working on this page</h1></center> + +<% include ./includes/footer %> +</body> + +</html>
\ No newline at end of file diff --git a/views/index.ejs b/views/index.ejs index 1864b81..d7a9afe 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -16,15 +16,75 @@ <a class="btn btn-green btn-lg" href="/about" role="button">Learn more</a> </div> - <!--Community, Video and Software--> - <div class="container"> + <!--Carousel Wrapper--> + <div id="carousel-example-2" class="carousel slide carousel-fade" data-ride="carousel"> + <!--Indicators--> + <ol class="carousel-indicators"> + <li data-target="#carousel-example-2" data-slide-to="0" class="active"></li> + <li data-target="#carousel-example-2" data-slide-to="1"></li> + <li data-target="#carousel-example-2" data-slide-to="2"></li> + </ol> + <!--/.Indicators--> + <!--Slides--> + <div class="carousel-inner" role="listbox"> + <div class="carousel-item active"> + <div class="view"> + <img class="d-block w-100" src="https://mdbootstrap.com/img/Photos/Slides/img%20(68).jpg" + alt="First slide"> + <div class="mask rgba-black-light"></div> + </div> + <div class="carousel-caption"> + <h3 class="h3-responsive">Light mask</h3> + <p>First text</p> + </div> + </div> + <div class="carousel-item"> + <!--Mask color--> + <div class="view"> + <img class="d-block w-100" src="https://mdbootstrap.com/img/Photos/Slides/img%20(6).jpg" + alt="Second slide"> + <div class="mask rgba-black-strong"></div> + </div> + <div class="carousel-caption"> + <h3 class="h3-responsive">Strong mask</h3> + <p>Secondary text</p> + </div> + </div> + <div class="carousel-item"> + <!--Mask color--> + <div class="view"> + <img class="d-block w-100" src="https://mdbootstrap.com/img/Photos/Slides/img%20(9).jpg" + alt="Third slide"> + <div class="mask rgba-black-slight"></div> + </div> + <div class="carousel-caption"> + <h3 class="h3-responsive">Slight mask</h3> + <p>Third text</p> + </div> + </div> + </div> + <!--/.Slides--> + <!--Controls--> + <a class="carousel-control-prev" href="#carousel-example-2" role="button" data-slide="prev"> + <span class="carousel-control-prev-icon" aria-hidden="true"></span> + <span class="sr-only">Previous</span> + </a> + <a class="carousel-control-next" href="#carousel-example-2" role="button" data-slide="next"> + <span class="carousel-control-next-icon" aria-hidden="true"></span> + <span class="sr-only">Next</span> + </a> + <!--/.Controls--> + </div> + <!--/.Carousel Wrapper--> + <br> + <!--Community, Video and Software--> <div class="row"> <div class="col-sm"> <center> <div class="view overlay"> <a href="https://discord.gg/EFhRDqG"> - <img src="/img/users-solid.svg" class="svg-white" height=220px> + <img src="/img/users-solid.svg" height=220px> <div class="mask flex-center rgba-green-strong"> <p class="white-text">Community</p> </div> @@ -38,7 +98,7 @@ <center> <div class="view overlay"> <a href="https://www.youtube.com/channel/UC9CIwdleH3m_PV35QqULWzA"> - <img src="/img/video-solid.svg" class="svg-white" height=220px> + <img src="/img/video-solid.svg" height=220px> <div class="mask flex-center rgba-green-strong"> <p class="white-text">Video</p> </div> @@ -52,7 +112,7 @@ <center> <div class="view overlay"> <a href="https://github.com/aleeproductions"> - <img src="/img/file-code-solid.svg" class="svg-white" height=220px> + <img src="/img/file-code-solid.svg" height=220px> <div class="mask flex-center rgba-green-strong"> <p class="white-text">Software</p> </div> @@ -65,8 +125,8 @@ </div> </div> <script> - console.log("Welcome to Alee Productions :)") - alert("Please note that this website is under active development and bugs may occur.\nIf there's any report it to the GitHub repo.") + console.log("Welcome to Alee Productions :)"); + alert("Please note that this website is under active development and bugs may occur.\nIf there's any report it to the GitHub repo."); </script> <% include ./includes/footer %> diff --git a/views/projects.ejs b/views/projects.ejs index 1fc2d32..d48282b 100644 --- a/views/projects.ejs +++ b/views/projects.ejs @@ -11,6 +11,7 @@ <h2 class="display-4">Projects</h2> <p class="lead">This is the projects that we are currently working on.</p> </div> + <center><h1>Notice: We are currently working on this page</h1></center> <% include ./includes/footer %> </body> |
