Files
ionic-framework/scripts/e2e/index.template.html
Max Lynch 77838300b7 Stuff
2015-05-04 09:29:04 -05:00

28 lines
734 B
HTML

<% var PREFIX = '../../..'; %>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" href="<%= PREFIX %>/css/ionic.css" />
<% buildConfig.scripts.forEach(function(script) {
var src = script.to || script;
if (!/http/.test(src)) {
%>
<script src="<%= PREFIX %>/lib/<%= src %>"></script>
<% } else { %>
<script src="<%= src %>"></script>
<% } %>
<% }); %>
</head>
<body ion-app>
</body>
<script>
System.config({
traceurOptions: {annotations: true, types: true},
});
System.import('main').catch(console.error.bind(console));
</script>
</html>