aboutsummaryrefslogtreecommitdiff
path: root/views/partials
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-06-02 21:29:41 +0530
committerBobby <[email protected]>2022-06-02 21:29:41 +0530
commitbbf289505ff886ecf0a691fb772c0f8174e01ce0 (patch)
tree6c3e7037d6ad84a1914a85e8658b4939a503c105 /views/partials
parentd726492637ae42e508b3a354a32ac0140e2a95f3 (diff)
downloadthatcomputerscientist-bbf289505ff886ecf0a691fb772c0f8174e01ce0.tar.xz
thatcomputerscientist-bbf289505ff886ecf0a691fb772c0f8174e01ce0.zip
Basic Under Construction Page
Diffstat (limited to 'views/partials')
-rw-r--r--views/partials/footer.ejs2
-rw-r--r--views/partials/header.ejs10
-rw-r--r--views/partials/sidebar.ejs5
3 files changed, 17 insertions, 0 deletions
diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs
new file mode 100644
index 00000000..691287b6
--- /dev/null
+++ b/views/partials/footer.ejs
@@ -0,0 +1,2 @@
+</body>
+</html> \ No newline at end of file
diff --git a/views/partials/header.ejs b/views/partials/header.ejs
new file mode 100644
index 00000000..a4dffea3
--- /dev/null
+++ b/views/partials/header.ejs
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>That Computer Scientist</title>
+ <link rel="stylesheet" href="css/main.css">
+ </head>
+ <body> \ No newline at end of file
diff --git a/views/partials/sidebar.ejs b/views/partials/sidebar.ejs
new file mode 100644
index 00000000..79044a97
--- /dev/null
+++ b/views/partials/sidebar.ejs
@@ -0,0 +1,5 @@
+<div class="sidebar">
+ <a href="/" class="title">
+ <h1>That Computer Scientist</h1>
+ </a>
+</div>