diff options
| -rw-r--r-- | _includes/footer.html | 4 | ||||
| -rw-r--r-- | _includes/navigator.html | 2 | ||||
| -rw-r--r-- | style.css | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 39bdb2a..a6521a8 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,4 +1,4 @@ <div class="footer"> - <p><b>© Copyright 2019, Andrew Lee.</b></p> - <p><b>Powered by GitHub Pages.</b></p> + <p><b>© Copyright 2018-2019, Andrew Lee.</b></p> + <p><b><a class="footer-a" href="https://pages.github.com/">Powered by GitHub Pages.</a></b></p> </div>
\ No newline at end of file diff --git a/_includes/navigator.html b/_includes/navigator.html index 00a24fd..b743142 100644 --- a/_includes/navigator.html +++ b/_includes/navigator.html @@ -1,6 +1,6 @@ <div id="navigation"> <ul class="navbar"> - <li class="nav logo">Andrew Lee</li> + <li class="nav logo"><a class="nav" href="/">Andrew Lee</a></li> <li class="nav" {% if page.url == "/" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/">HOME</a></li> <li class="nav" {% if page.url == "/projects.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/projects">PROJECTS</a></li> <li class="nav" {% if page.url == "/blog.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/blog">BLOG</a></li> @@ -108,6 +108,10 @@ li.nav { text-decoration: none; } +.footer-a { + text-decoration: none; +} + a.nav { color: white; text-decoration: none; |
