mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
26 lines
655 B
Text
26 lines
655 B
Text
<html>
|
|
<head>
|
|
<%= stylesheet_link_tag 'wizard' %>
|
|
<%= script 'ember_jquery' %>
|
|
<%= script 'wizard-vendor' %>
|
|
<%= script 'wizard-application' %>
|
|
<%= script "locales/#{I18n.locale}" %>
|
|
<%= render partial: "common/special_font_face" %>
|
|
<script src="/extra-locales/wizard"></script>
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
<title><%= t 'wizard.title' %></title>
|
|
</head>
|
|
|
|
<body class='wizard'>
|
|
<div id='wizard-main'></div>
|
|
|
|
<script>
|
|
(function() {
|
|
var wizard = require('wizard/wizard').default.create();
|
|
wizard.start();
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|