UNPKG

todomvc

Version:

> Helping you select an MV\* framework

17 lines (16 loc) 807 B
<!doctype html> <html lang="en" data-framework="enyo"> <head> <meta charset="utf-8"> <title>Enyo & Backbone.js • TodoMVC</title> <link rel="stylesheet" href="bower_components/todomvc-common/base.css"> </head> <body> <div id="todo-container" class="enyo-unselectable"> <!-- Enyo comes with a build and deploy process that will minify and concatenate your files into 2 js files. One for enyo, and one for app code. For the purpose of demonstration, I used the debug loading library to handle the dependency management. The loader nagivates directories for package.js files and injects files they list into the DOM. --> <script src="bower_components/todomvc-common/base.js"></script> <script src="enyo/enyo.js"></script> <script src="js/package.js"></script> </div> </body> </html>