mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-02-04 13:16:08 +08:00
20 lines
573 B
HTML
20 lines
573 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; %><script src="<%= PREFIX %>/lib/<%= src %>"></script>
|
|
<% }); %>
|
|
<script src="main.js"></script>
|
|
</head>
|
|
<body ion-app>
|
|
</body>
|
|
<script>
|
|
System.import('app/main').catch(console.error.bind(console));
|
|
</script>
|
|
</html>
|