-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (32 loc) · 1.28 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
<!doctype html>
<html lang="en" data-framework="app-decorators">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>App-Decorators • TodoMVC</title>
</head>
<body>
<app-todomvc></app-todomvc>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>
Created by
<a href="https://github.com/SerkanSipahi">Serkan Sipahi</a> using <a href="https://github.com/SerkanSipahi/app-decorators">app-decorators</a>
</p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<!-- auch die scripts async laden mit rel=preload, und als fallback async flag -->
<script src="./runtime.js"></script>
<!-- enable <script bundle> when using "jspm bundle" and target "appname" name is "not" equal src "appname" -->
<!-- jspm bundle lib/app - app-decorators dist/src/bundle.js -->
<!-- <script src="./lib/bundle.js"></script> -->
<!-- when src "appname" is equal target "appname", you dont need extra bundle file before -->
<script>
/**
* jspm bundle lib/app - app-decorators dist/src/bundle.js
* - the bundle name is the initianal start name of bootstrap
*/
bootstrap('lib/app');
</script>
</body>
</html>