aboutsummaryrefslogtreecommitdiff
path: root/app/index.html
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2020-01-26 16:33:43 +0100
committerBen Beltran <ben@nsovocal.com>2020-01-26 16:33:43 +0100
commit66dc4cae4cd37e82d773dc30be046d82d380ec4d (patch)
tree89723b2fa1505907a3998f8cbe81fd5448614ef6 /app/index.html
parent32ec81f6370328833fd0ba3dfe1c2974ac775973 (diff)
Add skeleton for topic
Tested with VoiceOver
Diffstat (limited to 'app/index.html')
-rw-r--r--app/index.html12
1 files changed, 10 insertions, 2 deletions
diff --git a/app/index.html b/app/index.html
index 7dad472..7c4d601 100644
--- a/app/index.html
+++ b/app/index.html
@@ -1,16 +1,24 @@
<!doctype html>
-<html>
+<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A forum for the year 3000">
<meta name="robots" content="noindex, nofollow" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="theme-color" content="#ffffff">
<title>Forum.</title>
+ <link rel="manifest" href="./manifest.webmanifest">
+
<script defer src="./application.js"></script>
- <link href="./css/style.css" rel="stylesheet">
+ <link href="./css/global.css" rel="stylesheet">
</head>
<body>
+ <noscript>
+ <h1>Javascript Required.</h1>
+ <p>Please enable Javascript to use this forum.</p>
+ </noscript>
</body>
</html>