generator-bitch
Version:
A simple generator (for Yeoman) to scaffolding web applications, just frontend stack
35 lines (30 loc) • 1.34 kB
HTML
<html<% if (appFramework === 'angular') { %> ng-app="<%= applicationSlug %>"<% } %>>
<head>
<meta charset="UTF-8">
<title><%= applicationName %></title>
<base href="/">
<meta charset="utf-8"/>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, user-scalable=no">
<!--[if IE]><link rel="shortcut icon" href="/imgs/favicons/icon.ico"><![endif]-->
<link rel="icon" href="/imgs/favicons/icon.png"/>
<!-- iphone / ipod retina-->
<link rel="apple-touch-icon" sizes="120x120" href="/imgs/favicons/icon-60@2x.png">
<!-- ipad 2 / mini-->
<link rel="apple-touch-icon" sizes="76x76" href="/imgs/favicons/icon-76@.png">
<!-- ipad retina-->
<link rel="apple-touch-icon" sizes="152x152" href="/imgs/favicons/icon-76@2x.png">
<!-- windows tile-->
<meta name="msapplication-TileImage" content="/imgs/favicons/tile.png">
<meta name="msapplication-TileColor" content="#000000">
<link rel="stylesheet" href="/styles/vendor.css">
<link rel="stylesheet" href="/styles/app.css">
</head>
<body><% if (appFramework === 'angular') { %>
<div ui-view></div><% } else { %>
<p>hello</p><% } %>
<script src="/scripts/vendor.js"></script>
<script src="/scripts/app.js"></script>
</body>
</html>