diff options
author | Indrajith K L | 2022-09-03 03:34:08 +0530 |
---|---|---|
committer | Indrajith K L | 2022-09-03 03:34:08 +0530 |
commit | b0728b42c38b4932eafe1c13ab5cb91104007cce (patch) | |
tree | d523c21aa966f77967e3fa2ccd4753f52dcd00eb /src/_includes/partials/footer.njk | |
parent | cd8c2850aa47849e62ac2be233a9374b44a1f890 (diff) | |
download | indrajith-dev-b0728b42c38b4932eafe1c13ab5cb91104007cce.tar.gz indrajith-dev-b0728b42c38b4932eafe1c13ab5cb91104007cce.tar.bz2 indrajith-dev-b0728b42c38b4932eafe1c13ab5cb91104007cce.zip |
* Style Changes
* Adds RSS Link
* Adds Social Links in Header & Footer based on responsiveness
Diffstat (limited to 'src/_includes/partials/footer.njk')
-rw-r--r-- | src/_includes/partials/footer.njk | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/_includes/partials/footer.njk b/src/_includes/partials/footer.njk index a883038..a0832b2 100644 --- a/src/_includes/partials/footer.njk +++ b/src/_includes/partials/footer.njk @@ -1,11 +1,13 @@ <footer class="items-center px-6 py-2 mt-auto bg-black text-white"> - - <ul class="flex w-full gap-10 font-supply-regular justify-center"> + <ul class="flex w-full visible md:hidden gap-4 font-supply-regular ml-auto justify-center mt-5"> + <li class="hover:text-white inline-block"><a title="Twitter" href="https://twitter.com/indrajithKLIS" class="links">{% feather "twitter" %}</a></li> + <li class="hover:text-white inline-block"><a title="Github" href="https://github.com/cooljith91112" class="links">{% feather "github" %}</a></li> + <li class="hover:text-white inline-block"><a title="LinkedIn" href="https://www.linkedin.com/in/indrajithklis/" class="links">{% feather "linkedin" %}</a></li> + <li class="hover:text-white inline-block"><a title="RSS" href="/feed.xml" class="links">{% feather "rss" %}</a></li> + </ul> + <ul class="flex w-full gap-10 font-supply-regular justify-center mt-5 md:mt-auto"> <li class="mt-1"> <p>© 2022 Indrajith K L </p> </li> - {# <li><a title="Twitter" href="https://twitter.com/indrajithKLIS" class="links">{% feather "twitter" %}</a></li> - <li><a title="Github" href="https://github.com/cooljith91112" class="links">{% feather "github" %}</a></li> - <li><a title="LinkedIn" href="https://www.linkedin.com/in/indrajithklis/" class="links">{% feather "linkedin" %}</a></li> #} - </ul> + </ul> </footer>
\ No newline at end of file |