+[submodule "enyo"]
+ path = enyo
+ url = https://github.com/enyojs/enyo.git
+[submodule "lib/onyx"]
+ path = lib/onyx
+ url = https://github.com/enyojs/onyx.git
+[submodule "lib/layout"]
+ path = lib/layout
+ url = https://github.com/enyojs/layout.git
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Blërg Mobile</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
+ <meta name="apple-mobile-web-app-capable" content="yes"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
+ <!-- enyo (debug) -->
+ <script src="enyo/enyo.js"></script>
+ <!-- application (debug) -->
+ <script src="source/package.js" type="text/javascript"></script>
+ </head>
+ <body class="enyo-unselectable">
+ <script>
+ new Blerg().renderInto(document.body);
+ </script>
+ </body>
+</html>
+Subproject commit 91e23f9e0f2849f39d9172593d4bc54bde4ee2ac
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Blërg Mobile</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
+ <meta name="apple-mobile-web-app-capable" content="yes"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
+ <!-- css -->
+ <link href="build/enyo.css" rel="stylesheet"/>
+ <link href="build/app.css" rel="stylesheet"/>
+ <!-- js -->
+ <script src="build/enyo.js"></script>
+ <script src="build/app.js"></script>
+ </head>
+ <body class="enyo-unselectable">
+ <script>
+ if (!window.Blerg) {
+ alert('No application build found, redirecting to debug.html.');
+ location = 'debug.html';
+ }
+ new Blerg().renderInto(document.body);
+ </script>
+ </body>
+</html>
+Subproject commit 783c3c2841c99c98818b24b63a37b0213db31421
+Subproject commit c6998f83822486a3d60382509037b5153de16dd2
+enyo.kind({
+ name: "Blerg",
+ components: [
+ {content: "Hello!"}
+ ]
+});
+enyo.depends(
+ '$lib/layout',
+ '$lib/onyx',
+ 'Blerg.css',
+ 'Blerg.js'
+);