diff --git a/src/views/index.ejs b/src/views/index.ejs index 44dc9a2..03c2c4f 100644 --- a/src/views/index.ejs +++ b/src/views/index.ejs @@ -1 +1,4 @@ -

This is a <%= engine %> Template

\ No newline at end of file +<%- include('partials/head') %> +<%- include('partials/header') %> +

This is a <%= engine %> Template

+<%- include('partials/footer') %> \ No newline at end of file diff --git a/src/views/partials/footer.ejs b/src/views/partials/footer.ejs new file mode 100644 index 0000000..f3328a6 --- /dev/null +++ b/src/views/partials/footer.ejs @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/src/views/partials/head.ejs b/src/views/partials/head.ejs new file mode 100644 index 0000000..1bb9854 --- /dev/null +++ b/src/views/partials/head.ejs @@ -0,0 +1,5 @@ + + + + + diff --git a/src/views/partials/header.ejs b/src/views/partials/header.ejs new file mode 100644 index 0000000..4706f26 --- /dev/null +++ b/src/views/partials/header.ejs @@ -0,0 +1,3 @@ +
+ This is the header +
\ No newline at end of file