diff options
Diffstat (limited to 'comic')
| -rw-r--r-- | comic/index.html | 29 | ||||
| -rw-r--r-- | comic/viewer.html | 8 |
2 files changed, 32 insertions, 5 deletions
diff --git a/comic/index.html b/comic/index.html index 6d5647b..a06243c 100644 --- a/comic/index.html +++ b/comic/index.html @@ -4,8 +4,35 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Comic Index</title> + + <link type="text/css" rel="stylesheet" href="../styles/base.css" /> </head> <body> - + <nav> + <!-- Logo for ComXII --> + <div> + <a href="../"> + <img id="logo" alt="ComXII Home Page" 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> </body> </html>
\ No newline at end of file diff --git a/comic/viewer.html b/comic/viewer.html index 33d81f9..75ffcb5 100644 --- a/comic/viewer.html +++ b/comic/viewer.html @@ -5,14 +5,14 @@ <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" /> + <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 href="../"> + <img id="logo" alt="ComXII Home Page" src="../assets/comxii.svg" /> </a> </div> @@ -35,6 +35,6 @@ (C) ComXII 2026 </footer> - <script src="/scripts/viewer.js"></script> + <script src="../scripts/viewer.js"></script> </body> </html>
\ No newline at end of file |