diff options
Diffstat (limited to 'src/_includes/partials')
-rw-r--r-- | src/_includes/partials/footer.njk | 8 | ||||
-rw-r--r-- | src/_includes/partials/head.njk | 2 | ||||
-rw-r--r-- | src/_includes/partials/header.njk | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/_includes/partials/footer.njk b/src/_includes/partials/footer.njk index 3b88e2a..f3bffae 100644 --- a/src/_includes/partials/footer.njk +++ b/src/_includes/partials/footer.njk @@ -1,13 +1,13 @@ <footer class="items-center px-6 py-2 mt-auto bg-black text-white"> - <ul class="w-full block md:hidden gap-4 font-supply-regular ml-auto text-center mt-5 md:mt-0"> + <ul class="w-full flex md:hidden gap-5 font-supply-regular ml-auto justify-center mt-5 md:mt-0"> <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 class="mt-1"> + <p>© 2022 Indrajith K L </p> + </li> </ul> </footer>
\ No newline at end of file diff --git a/src/_includes/partials/head.njk b/src/_includes/partials/head.njk index 7d3d5c1..ed4e5ec 100644 --- a/src/_includes/partials/head.njk +++ b/src/_includes/partials/head.njk @@ -15,6 +15,6 @@ <meta property="og:title" content="Indrajith K L"> <meta property="og:description" content="Frontend Web Developer, Game Dev Hobbyist, Night Owl, Synthwave & Vaporwave Lover"> <meta property="og:image" content="https://indrajith.dev/images/me.png"> -<link rel="stylesheet" href="/styles.css"> +<link rel="stylesheet" href="/global.css"> {% favicon './favicon.svg' %} <title>{{title}} | { indrajith.dev } </title>
\ No newline at end of file diff --git a/src/_includes/partials/header.njk b/src/_includes/partials/header.njk index 50c1a7f..959260b 100644 --- a/src/_includes/partials/header.njk +++ b/src/_includes/partials/header.njk @@ -1,6 +1,6 @@ <header class="w-full bg-black text-yellow-500 flex flex-row md:flex-col justify-between items-center px-6 py-4"> <nav class="w-full"> - <ul class="flex flex-col md:flex-row gap-10 font-supply-regular w-full items-center text-lg md:text-xl"> + <ul class="flex flex-col md:flex-row gap-10 font-supply-regular w-full items-center text-lg md:text-xl"> <li> <a href="/" class="text-lg md:text-3xl">{ indrajith.dev } </a> </li> |