forked from dasher-project/dasher-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (37 loc) · 1.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html><!--
(c) 2020 The ACE Centre-North, UK registered charity 1089313.
MIT licensed, see https://opensource.org/licenses/MIT
--><head>
<meta charset="utf-8"><!--
Magic to make it load at a sensible size in a mobile browser or web
view. Reference:
https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag#Viewport_basics
--><meta name="viewport" content="width=device-width, initial-scale=1">
<title>Proof of concept</title>
<style>
body {font-family: sans-serif;}
p.small-print {font-size: 0.7rem;}
p.small-print a {text-decoration: none;}
</style>
</head>
<body><!--
The HTML body is written in a whitespace elimination style. The closing > of
a tag will sometimes be at the start of a line, and next to the opening < of
the next tag. This means that there is no whitespace outside markup.
--><h1>Proof of Concept</h1
><p
>The proof-of-concept has moved to the <a href="browser/index.html"
>browser</a> sub-directory.</p
><p id="small-print" class="small-print"
>© 2020 The ACE Centre-North, UK registered charity 1089313.
MIT licensed, see <a
href="https://opensource.org/licenses/MIT"
>https://opensource.org/licenses/MIT</a
><br
/>Code is here: <a
href="https://github.com/dasher-project/redash"
>https://github.com/dasher-project/redash</a
></p
></body>
</html>