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/intro.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/intro.njk')
-rw-r--r-- | src/_includes/intro.njk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/_includes/intro.njk b/src/_includes/intro.njk new file mode 100644 index 0000000..19938e9 --- /dev/null +++ b/src/_includes/intro.njk @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +{% include "./partials/head.njk" %} +</head> +<body class="flex h-screen flex-col"> + {% include "./partials/header.njk" %} + <main class="container mx-auto"> + <article > + {{content | safe}} + </article> + </main> + {% include "./partials/footer.njk" %} +</body> +</html>
\ No newline at end of file |