summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorcflip <36554078+cflip@users.noreply.github.com>2021-06-05 11:57:12 -0600
committercflip <36554078+cflip@users.noreply.github.com>2021-06-05 19:26:18 -0600
commit2ae22c4a438dc3c1822b8d909a4b38a211427bee (patch)
treebc9c1eb4ffbb81f4868d17a0098f1cff012723c7 /includes
parent24efe49bc2b545e3a3e46d7d6f2bd1166163e52b (diff)
Use different syntax for conditions in HTML
Diffstat (limited to 'includes')
-rw-r--r--includes/templates/404.php20
1 files changed, 11 insertions, 9 deletions
diff --git a/includes/templates/404.php b/includes/templates/404.php
index d4d5128..74db2d6 100644
--- a/includes/templates/404.php
+++ b/includes/templates/404.php
@@ -1,12 +1,14 @@
<!DOCTYPE html>
<html>
-<head>
- <title>cflip.net forum</title>
- <link rel="stylesheet" href="styles/style.css">
-</head>
-<body>
- <?php include_once 'header.php'; ?>
- <h1>Page Not Found</h1>
- <p>The page you requested does not exist.</p>
-</body>
+ <head>
+ <title>cflip.net forum</title>
+ <link rel="stylesheet" href="styles/style.css">
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ </head>
+ <body>
+<?php include_once 'header.php'; ?>
+ <h1>Page Not Found</h1>
+ <p>The page you requested does not exist.</p>
+ </body>
</html>