diff options
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 |