UNPKG

generator-fountain-angular2

Version:

Yeoman Fountain generator to scaffold a webapp with Angular 2 written in ES6 (Babel), TypeScript through Webpack or SystemJS including tools Gulp 4, ESLint, Browsersync and Karma

26 lines (24 loc) 656 B
<!doctype html> <html> <head> <% if (router !== 'none') { -%> <base href="/"> <% } -%> <meta charset="utf-8"> <title>ngrx/store TodoMVC</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <link rel="icon" type="image/png" href="http://fountainjs.io/assets/imgs/fountain.png" /> </head> <body> <div class="todoapp"> <% if (router === 'uirouter') { -%> <ui-view>Loading...</ui-view> <% } else if (router === 'router') { -%> <fountain-root>Loading...</fountain-root> <% } else { -%> <fountain-app>Loading...</fountain-app> <% } -%> </div> </body> </html>