diff options
| author | Syndamia <kamen@syndamia.com> | 2025-01-19 18:29:51 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-01-19 18:29:51 +0200 |
| commit | 1fedd90926b64f050d7a8f4284fb7a5125fcae16 (patch) | |
| tree | aacbd63cfaf86a9a6a56a5138b001ab663611a9c | |
| parent | 065174271d5b521b3bab54d48bb1c91569f8e56f (diff) | |
| download | nowayforward_human-1fedd90926b64f050d7a8f4284fb7a5125fcae16.tar nowayforward_human-1fedd90926b64f050d7a8f4284fb7a5125fcae16.tar.gz nowayforward_human-1fedd90926b64f050d7a8f4284fb7a5125fcae16.zip | |
feat(views): Add home to navbar and update default page title
| -rw-r--r-- | views/header.php | 3 | ||||
| -rw-r--r-- | views/styles.css | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/views/header.php b/views/header.php index 13c1f28..c4a0a21 100644 --- a/views/header.php +++ b/views/header.php @@ -6,11 +6,12 @@ <meta name="theme-color" content="#2b2b2e"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/styles.css"> - <title><?php echo htmlspecialchars($title ?? "");?></title> + <title><?php echo htmlspecialchars($title ?? "No Way Forward Human");?></title> </head> <body> <header> <nav> + <a href="/home/index.php">Home</a> <a href="/test/index.php">Test</a> <a href="/sample_archive/index.php">Sample Archive</a> </nav> diff --git a/views/styles.css b/views/styles.css index 9ace7bf..bed3009 100644 --- a/views/styles.css +++ b/views/styles.css @@ -142,6 +142,10 @@ nav > *:hover { border-bottom: none; } +nav > :first-child { + margin-right: 0.5em; +} + article > * { width: 100%; } |
