diff options
-rw-r--r-- | views/partials/bottom/footer.ejs | 2 | ||||
-rw-r--r-- | views/partials/footer.ejs | 4 | ||||
-rw-r--r-- | views/partials/top/navbar.ejs | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/views/partials/bottom/footer.ejs b/views/partials/bottom/footer.ejs new file mode 100644 index 0000000..23f3220 --- /dev/null +++ b/views/partials/bottom/footer.ejs @@ -0,0 +1,2 @@ +<div class="mt-4"> +</div> diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs index b88ca51..3905958 100644 --- a/views/partials/footer.ejs +++ b/views/partials/footer.ejs @@ -1,4 +1,8 @@ </main> +<footer> + <%- include('bottom/footer'); %> +</footer> + </body> </html> diff --git a/views/partials/top/navbar.ejs b/views/partials/top/navbar.ejs index eb6f997..77ec14b 100644 --- a/views/partials/top/navbar.ejs +++ b/views/partials/top/navbar.ejs @@ -1,4 +1,4 @@ -<nav class="navbar bg-light"> +<nav class="navbar navbar-expand bg-light shadow sticky-top"> <div class="container-fluid"> <a class="navbar-brand" href="/"> <img src="static/images/sneedab.gif" alt="Logo" width="60" height="30" class="d-inline-block align-text-top"> |