discourse/app/views/layouts/finish_installation.html.erb
Gerhard Schlager 0019e2e110
FIX: Remove unused JS from "finish installation" page (#12263)
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.
2021-03-02 19:19:19 +01:00

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>