diff options
| author | Bobby <[email protected]> | 2022-06-02 21:29:41 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-06-02 21:29:41 +0530 |
| commit | bbf289505ff886ecf0a691fb772c0f8174e01ce0 (patch) | |
| tree | 6c3e7037d6ad84a1914a85e8658b4939a503c105 /views/partials | |
| parent | d726492637ae42e508b3a354a32ac0140e2a95f3 (diff) | |
| download | thatcomputerscientist-bbf289505ff886ecf0a691fb772c0f8174e01ce0.tar.xz thatcomputerscientist-bbf289505ff886ecf0a691fb772c0f8174e01ce0.zip | |
Basic Under Construction Page
Diffstat (limited to 'views/partials')
| -rw-r--r-- | views/partials/footer.ejs | 2 | ||||
| -rw-r--r-- | views/partials/header.ejs | 10 | ||||
| -rw-r--r-- | views/partials/sidebar.ejs | 5 |
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> |
