diff options
Diffstat (limited to 'views/includes')
| -rw-r--r-- | views/includes/footer.ejs | 2 | ||||
| -rw-r--r-- | views/includes/header.ejs | 11 | ||||
| -rw-r--r-- | views/includes/navbar.ejs | 6 |
3 files changed, 16 insertions, 3 deletions
diff --git a/views/includes/footer.ejs b/views/includes/footer.ejs index 50e53ec..dd10125 100644 --- a/views/includes/footer.ejs +++ b/views/includes/footer.ejs @@ -1,5 +1,5 @@ <footer class="page-footer fixed-bottom font-small green"> - <div class="footer-copyright text-center py-3">© Copyright 2019, Alee Productions. Powered by ExpressJS and EJS.</div> + <div class="footer-copyright text-center py-3">© Copyright 2016-2019, Alee Productions. Powered by ExpressJS and EJS.</div> </footer> <!-- JQuery --> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> diff --git a/views/includes/header.ejs b/views/includes/header.ejs index 9e26117..d0632ac 100644 --- a/views/includes/header.ejs +++ b/views/includes/header.ejs @@ -1,3 +1,14 @@ +<!-- Favicons --> +<link rel="apple-touch-icon" sizes="180x180" href="/ico/apple-touch-icon.png"> +<link rel="icon" type="image/png" sizes="32x32" href="/ico/favicon-32x32.png"> +<link rel="icon" type="image/png" sizes="16x16" href="/ico/favicon-16x16.png"> +<link rel="manifest" href="/ico/site.webmanifest"> +<link rel="mask-icon" href="/ico/safari-pinned-tab.svg" color="#5bbad5"> +<link rel="shortcut icon" href="/ico/favicon.ico"> +<meta name="msapplication-TileColor" content="#da532c"> +<meta name="msapplication-config" content="/ico/browserconfig.xml"> +<meta name="theme-color" content="#ffffff"> + <!-- Font Awesome --> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"> <!-- Bootstrap core CSS --> diff --git a/views/includes/navbar.ejs b/views/includes/navbar.ejs index ed2e826..b8d3ed5 100644 --- a/views/includes/navbar.ejs +++ b/views/includes/navbar.ejs @@ -1,11 +1,13 @@ <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> - <a class="navbar-brand" href="/">Alee Productions</a> + <a class="navbar-brand" href="/"> + <img src="/img/ALP.png" height="30" class="d-inline-block align-top" alt="Alee Prod Logo"> + Alee Productions</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> - <ul class="navbar-nav"> + <ul class="navbar-nav mr-auto"> <li class="nav-item"> <a class="nav-link" href="/">Home</a> </li> |
