diff options
author | Preston Pan <preston@nullring.xyz> | 2022-11-08 10:28:58 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2022-11-08 10:28:58 -0800 |
commit | dc2fd65e6bfeaa2c475d5042f64263ac9427c22f (patch) | |
tree | 3f680c74d831c984048080e0ff7d86fb7c5f1f05 /build_template/base.html |
completely changed backend
Diffstat (limited to 'build_template/base.html')
-rw-r--r-- | build_template/base.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/build_template/base.html b/build_template/base.html new file mode 100644 index 0000000..4c56887 --- /dev/null +++ b/build_template/base.html @@ -0,0 +1,29 @@ +<!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" /> + <meta name="description" content="My personal website."> + <meta name="author" content="Preston Pan"> + <link rel="stylesheet" type="text/css" href="/css/style.css" /> + + <link rel="icon" type="image/png" href="/img/favicon.png"> + <title> +$$VAR TITLE + </title> +</head> +<body> + <div class="nav" class="justcenter"> + <a href="/index.html" class="justleft">Home</a> | + <a href="/about/" class="justleft">About</a> | + <a href="/about/contact.html" class="justleft">Contact</a> + <!--BACKDIR--> + <hr> + </div> + + <div class="content"> +$$VAR CONTENT + </div> +</body> +</html> |