mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
21 lines
627 B
Plaintext
21 lines
627 B
Plaintext
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag :wizard, theme_ids: nil %>
|
|
<%= preload_script 'ember_jquery' %>
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
<%= preload_script 'wizard-vendor' %>
|
|
<%= preload_script 'wizard-application' %>
|
|
<%= render partial: "common/special_font_face" %>
|
|
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
<title><%= t 'wizard.title' %></title>
|
|
</head>
|
|
|
|
<body class='wizard'>
|
|
<div id='wizard-main'></div>
|
|
<%= preload_script 'wizard-start' %>
|
|
</body>
|
|
</html>
|