discourse/app/views/layouts/finish_installation.html.erb
Renato Atilio a21f064fad
UX: add color-scheme meta tag to _head (#30245)
Adds the `color-scheme` meta tag to the `_head` partial and removes it from the finish installation template to prevent it from being added twice.
2024-12-13 08:10:08 -03:00

23 lines
556 B
Plaintext

<html>
<head>
<%= discourse_stylesheet_link_tag 'wizard', theme_id: 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-container'>
<div class='wizard-container-contents finish-installation'>
<%= yield %>
</div>
<div class='wizard-footer'>
<div class='discourse-logo'></div>
</div>
</div>
</div>
</body>
</html>