UNPKG

todomvc

Version:

> Helping you select an MV\* framework

29 lines (28 loc) 689 B
<!doctype html> <html lang="en" data-framework="rappidjs"> <head> <meta charset="utf-8"> <title>rAppid.js • TodoMVC</title> <link rel="stylesheet" href="bower_components/todomvc-common/base.css"> <style> .hide { display: none; } </style> </head> <body> <script src="bower_components/todomvc-common/base.js"></script> <script src="app/lib/rappidjs.min.js"></script> <script> rAppid.bootStrap('app/Todo.xml', 'config.json', function (err, systemManager, application) { if (!err) { application.start(null, function () { application.render(document.body); }); } else { console.warn(err); } }); </script> </body> </html>