mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 17:34:25 +08:00
a21f064fad
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.
23 lines
556 B
Plaintext
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>
|