2016-08-26 01:14:56 +08:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<%= stylesheet_link_tag 'wizard' %>
|
|
|
|
<%= script 'ember_jquery' %>
|
2016-09-01 01:35:49 +08:00
|
|
|
<%= script 'wizard-vendor' %>
|
2016-08-26 01:14:56 +08:00
|
|
|
<%= script 'wizard-application' %>
|
|
|
|
<%= script "locales/#{I18n.locale}" %>
|
|
|
|
<%= render partial: "common/special_font_face" %>
|
|
|
|
<script src="/extra-locales/wizard"></script>
|
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
|
|
|
|
<title><%= t 'wizard.title' %></title>
|
|
|
|
</head>
|
|
|
|
|
2016-09-01 01:35:49 +08:00
|
|
|
<body class='wizard'>
|
2016-08-26 01:14:56 +08:00
|
|
|
<div id='wizard-main'></div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
(function() {
|
|
|
|
var wizard = require('wizard/wizard').default.create();
|
|
|
|
wizard.start();
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|