diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-08-17 22:06:08 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-08-17 22:06:08 -0400 |
| commit | 0d07e632916903b1fa1f47bba883c15868f37ea3 (patch) | |
| tree | e289b5fdc44ef7319a4ee40bece774d277f1f81e /comic | |
Initial commit
Diffstat (limited to 'comic')
| -rw-r--r-- | comic/index.html | 11 | ||||
| -rw-r--r-- | comic/viewer.html | 40 |
2 files changed, 51 insertions, 0 deletions
diff --git a/comic/index.html b/comic/index.html new file mode 100644 index 0000000..6d5647b --- /dev/null +++ b/comic/index.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Comic Index</title> +</head> +<body> + +</body> +</html>
\ No newline at end of file diff --git a/comic/viewer.html b/comic/viewer.html new file mode 100644 index 0000000..33d81f9 --- /dev/null +++ b/comic/viewer.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Comic Viewer</title> + + <link type="text/css" rel="stylesheet" href="/styles/base.css" /> +</head> +<body> + <nav> + <!-- Logo for ComXII --> + <div> + <a id="comic-link" href="/"> + <img id="logo" alt="Comic Index" src="/assets/comxii.svg" /> + </a> + </div> + + <!-- Nav menu --> + <div id="main-nav"> + + </div> + + <!-- User profile --> + <div id="user-menu"> + + </div> + </nav> + + <content> + + </content> + + <footer> + (C) ComXII 2026 + </footer> + + <script src="/scripts/viewer.js"></script> +</body> +</html>
\ No newline at end of file |