diff options
author | Indrajith K L | 2022-08-28 00:41:33 +0530 |
---|---|---|
committer | Indrajith K L | 2022-08-28 00:41:33 +0530 |
commit | 191fb0c0aa31a5142f81ea6f7fcf253b10f0297c (patch) | |
tree | 019ad6000e0be1e01779a962b42ce437e84aaed9 /src/_includes/base.njk | |
parent | 7524f9aa94368d28250813a4e3bad965d178aa7c (diff) | |
download | indrajith-dev-191fb0c0aa31a5142f81ea6f7fcf253b10f0297c.tar.gz indrajith-dev-191fb0c0aa31a5142f81ea6f7fcf253b10f0297c.tar.bz2 indrajith-dev-191fb0c0aa31a5142f81ea6f7fcf253b10f0297c.zip |
* Project Restructred
* Adds Tailwind
* Completed Intro Page, About, Posts Listing
* Changes build and development scripts
Diffstat (limited to 'src/_includes/base.njk')
-rw-r--r-- | src/_includes/base.njk | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/_includes/base.njk b/src/_includes/base.njk index 0c9b0df..1b60c94 100644 --- a/src/_includes/base.njk +++ b/src/_includes/base.njk @@ -1,15 +1,21 @@ <!DOCTYPE html> <html lang="en"> <head> -{% include "head.njk" %} +{% include "./partials/head.njk" %} </head> -<body> - {% include "header.njk" %} - <main> - {{content | safe}} +<body class="flex h-screen flex-col font-supply-regular"> + {% include "./partials/header.njk" %} + <main class="container mx-auto max-w-5xl p-8"> + <section class="w-full flex flex-col items-center px-3"> + <article class="flex flex-col my-2"> + <div class="flex flex-col justify-start p-6 pt-2"> + <div class="mt-3 text-xl font-supply-regular text-justify"> + {{content | safe}} + </div> + </div> + </article> + </section> </main> - <footer> - <p>© 2022 Indrajith K L </p> - </footer> + {% include "./partials/footer.njk" %} </body> </html>
\ No newline at end of file |