UNPKG

jetfuel-blackbox

Version:

Currently, BlackBox is a boilerplate client-side application framework, built on top of the JetFuel build system and Grunt, Backbone, RequireJS, JetRunner unit test server (Mocha BDD/TDD test framework + PhantomJS + SauceLabs cloud integration), Dust (and Plate Django port) for templating (both client and server-side), Sass, Express dynamic web server, etc. BlackBox is the template used for JetFuel's basic `init` command.

33 lines (32 loc) 1.13 kB
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title>BlackBox | {+title}Client-Side Application Framework{/title}</title> <link rel="stylesheet" href="/css/blackbox/web/layout.css"> {+css}{/css} <script type="text/javascript" src="/vendor/modernizr/modernizr-2.6.2.min.js"></script> </head> <body> <div id="wrapper"> <header> <a href="/"><h1>BlackBox</h1></a> </header> <main role="main">{+content/}</main> <footer> <ul> <li><a href="https://github.com/peteromano/jetfuel-blackbox" target="_blank">Code</a></li> <li><a href="https://twitter.com/peteromano" target="_blank">Twitter</a></li> </ul> </footer> </div> <script id="blackbox-application-data" type="text/html">{ "TEMPLATE_ENGINE": "{TEMPLATE_ENGINE}", "ENV": "{ENV}" }</script> <script id="blackbox-user-data" type="text/html">{ "loggedIn": false }</script> <script data-main="/js/{ENV}/blackbox/web/main.bundled.js" src="/vendor/require.js"></script> </body> </html>