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
24 lines (22 loc) • 605 B
HTML
<html>
<head>
<% if (router !== 'none') { -%>
<base href="/">
<% } -%>
<meta charset="utf-8">
<title>FountainJS</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>
<% if (router === 'uirouter') { -%>
<ui-view>Loading...</ui-view>
<% } else if (router === 'router') { -%>
<fountain-root>Loading...</fountain-root>
<% } else { -%>
<fountain-app>Loading...</fountain-app>
<% } -%>
</body>
</html>