-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewtab.html
34 lines (30 loc) · 939 Bytes
/
newtab.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
<!-- Blatantly stolen from the elm todo-mvc example -->
<!-- https://github.com/evancz/elm-todomvc/blob/master/index.html -->
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>New Tab</title>
<script type="text/javascript" src="elm.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="error body">
<h1 class="error title">
Uh Oh
</h1>
<h3 class="error explain">
Something unexpected has happened :/ Go yell at the developer.
</h3>
<div class="error message">
</div>
<h3 class="error report">
Issues can be reported here: <a href="https://github.com/samm81/stimulus/issues">https://github.com/samm81/stimulus/issues</a>
</h3>
<h3 class="error">
Please include the error message in the chrome web inspector, and your stimlulus version.
</h3>
</div>
</body>
<script type="text/javascript" src="newtab.js"></script>
</html>