UNPKG

app-decorators-todomvc

Version:
33 lines (32 loc) 1.31 kB
<!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>