-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
25 lines (25 loc) · 997 Bytes
/
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
<!doctype html>
<html lang="en" data-framework="javascript">
<head>
<meta charset="utf-8">
<title>Heresy 🔥 TodoMVC</title>
<link rel="stylesheet" href="css/index.css">
<script>
if(this.customElements)
try{customElements.define('built-in',document.createElement('p').constructor,{'extends':'p'})}
catch(a){document.write('<script src="//unpkg.com/@ungap/custom-elements-builtin"><'+'/script>')}
else
document.write('<script src="//unpkg.com/document-register-element"><'+'/script>');</script>
<script type="module" src="js/new.js"></script>
<script nomodule src="js/old.js"></script>
</head>
<body>
<section class="todoapp" is="todo-heresy"></section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://twitter.com/oscargodson">Oscar Godson</a></p>
<p>Refactored by <a href="https://github.com/cburgmer">Christoph Burgmer</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
</body>
</html>