mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
0b7ed8ffaf
* FEATURE: backend support for user-selectable components * fix problems with previewing default theme * rename preview_key => preview_theme_id * omit default theme from child themes dropdown and try a different fix * cache & freeze stylesheets arrays
24 lines
641 B
Plaintext
24 lines
641 B
Plaintext
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag 'wizard', theme_ids: nil %>
|
|
<%= render partial: "common/special_font_face" %>
|
|
<%= preload_script 'ember_jquery' %>
|
|
<%= preload_script 'wizard-vendor' %>
|
|
<%= render partial: "layouts/head" %>
|
|
<title><%= t 'wizard.title' %></title>
|
|
</head>
|
|
|
|
<body class='wizard'>
|
|
<div id='wizard-main'>
|
|
<div class='wizard-column'>
|
|
<div class='wizard-column-contents finish-installation'>
|
|
<%= yield %>
|
|
</div>
|
|
<div class='wizard-footer'>
|
|
<div class='discourse-logo'></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|