From 67dbc490de261318f1190d1e7e46dd9272f51ef6 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 27 Aug 2022 04:43:46 +0530 Subject: Initial Commit * MVP --- src/_includes/base.njk | 15 +++++++++++++++ src/_includes/head.njk | 5 +++++ src/_includes/header.njk | 16 ++++++++++++++++ src/_includes/posts.njk | 17 +++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 src/_includes/base.njk create mode 100644 src/_includes/head.njk create mode 100644 src/_includes/header.njk create mode 100644 src/_includes/posts.njk (limited to 'src/_includes') diff --git a/src/_includes/base.njk b/src/_includes/base.njk new file mode 100644 index 0000000..0c9b0df --- /dev/null +++ b/src/_includes/base.njk @@ -0,0 +1,15 @@ + + + +{% include "head.njk" %} + + + {% include "header.njk" %} +
+ {{content | safe}} +
+ + + \ No newline at end of file diff --git a/src/_includes/head.njk b/src/_includes/head.njk new file mode 100644 index 0000000..50aacb9 --- /dev/null +++ b/src/_includes/head.njk @@ -0,0 +1,5 @@ + + + + +{{title}} \ No newline at end of file diff --git a/src/_includes/header.njk b/src/_includes/header.njk new file mode 100644 index 0000000..14f28c1 --- /dev/null +++ b/src/_includes/header.njk @@ -0,0 +1,16 @@ +
+ +
\ No newline at end of file diff --git a/src/_includes/posts.njk b/src/_includes/posts.njk new file mode 100644 index 0000000..8422f4c --- /dev/null +++ b/src/_includes/posts.njk @@ -0,0 +1,17 @@ + + + +{% include "head.njk" %} + + + {% include "header.njk" %} + +
+ {{content | safe}} + back to posts +
+ + + \ No newline at end of file -- cgit v1.2.3