From fdb02383dda84f49471d341821fc3e2607754b85 Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 13 May 2022 20:21:48 +0200 Subject: Testing Testing 1, 2, 3 --- views/index.ejs | 26 ++++++++++++++++++++++++++ views/partials/footer.ejs | 2 ++ views/partials/header.ejs | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 views/index.ejs create mode 100644 views/partials/footer.ejs create mode 100644 views/partials/header.ejs (limited to 'views') diff --git a/views/index.ejs b/views/index.ejs new file mode 100644 index 0000000..b618586 --- /dev/null +++ b/views/index.ejs @@ -0,0 +1,26 @@ +<%- include("./partials/header.ejs", {title: "Home"}) %> +
+
+
+
We are The Cuties!
+
The two pegasi making stuff with their wings
+
+
+
+
+
+
+ +
Stronger when we're together
+ +
+
+

Welcome to our shared website!

+

This is where we talk about our common projects and (more generally) the kind of stuff we do together every day. We are both plural pegasus ponies who dream of living in Equestria (and/or together) and being happy. Hope you like our website!

+ +

The kind of stuff we do...

+

Nothing for now -_-, but feel free to check later!

+
+
+ +<%- include("./partials/footer.ejs") %> \ No newline at end of file diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs new file mode 100644 index 0000000..691287b --- /dev/null +++ b/views/partials/footer.ejs @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/views/partials/header.ejs b/views/partials/header.ejs new file mode 100644 index 0000000..bb1a1ec --- /dev/null +++ b/views/partials/header.ejs @@ -0,0 +1,33 @@ + + + + + + + + + + <%= title %> - The Cuties + + + \ No newline at end of file -- cgit