diff options
| author | Andrew Lee <alee14498@gmail.com> | 2019-08-13 16:00:49 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@gmail.com> | 2019-08-13 16:00:49 -0400 |
| commit | 28d318a54ba77dc381ba0c92f9adc7b29e0abac3 (patch) | |
| tree | 06e24bbfd613c5f2c073c89bf1081e491c8d3508 /views/projects.ejs | |
| parent | 7520d898e7838efd806d04da2258483775edc729 (diff) | |
| download | alp-website-28d318a54ba77dc381ba0c92f9adc7b29e0abac3.tar.gz alp-website-28d318a54ba77dc381ba0c92f9adc7b29e0abac3.tar.bz2 alp-website-28d318a54ba77dc381ba0c92f9adc7b29e0abac3.zip | |
Big changes
Diffstat (limited to 'views/projects.ejs')
| -rw-r--r-- | views/projects.ejs | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/views/projects.ejs b/views/projects.ejs index d48282b..a30634c 100644 --- a/views/projects.ejs +++ b/views/projects.ejs @@ -1,4 +1,5 @@ <!DOCTYPE html> +<!-- Alee Productions Website: Made by Alee and licensed with GPL-3.0 --> <html> <head> @@ -11,8 +12,37 @@ <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> + <div class="container"> + <center><h1 class="mb-5">Software</h1></center> + <!-- Software Cards --> + <div class="row d-flex justify-content-center"> + + <div class="col-md-5"> + <div class="card elegant-color"> + <div class="card-body"> + <h5 class="card-title">Unicity</h5> + <p class="card-text white-text">A Sims clone written in Unity3D.</p> + <a class="card-link green-text" href="https://github.com/aleeproductions/Unicity">GitHub</a> + </div> + </div> + </div> + + <div class="col-md-5"> + <div class="card elegant-color"> + <div class="card-body"> + <h5 class="card-title">QuantumNet</h5> + <p class="card-text white-text">A computer "hacking" game made in C#.</p> + <a class="card-link green-text">Card link</a> + </div> + </div> + </div> + </div> + <!--/.Software Cards --> + <center><h1 class="mt-5 mb-5">Videos</h1></center> + <ul id="yt-results" class="yt" style="list-style-type:none;"></ul> + </div> + <% include ./includes/scripts %> + <script type="text/javascript" data-main="/js/yt-list-videos.js" src="https://requirejs.org/docs/release/2.3.5/minified/require.js"></script> <% include ./includes/footer %> </body> - </html>
\ No newline at end of file |
