mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 04:15:49 +08:00
0019e2e110
This fixes the following error: "Uncaught ReferenceError: I18n is not defined" The alternative would be to add `locales/#{I18n.locale}`, but the pages do not use any JS.
23 lines
551 B
Plaintext
23 lines
551 B
Plaintext
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag 'wizard', theme_ids: nil %>
|
|
<%= discourse_color_scheme_stylesheets %>
|
|
|
|
<%= 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>
|