mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
24 lines
625 B
Plaintext
24 lines
625 B
Plaintext
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag 'wizard', theme_key: nil %>
|
|
<%= render partial: "common/special_font_face" %>
|
|
<%= script 'ember_jquery' %>
|
|
<%= 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>
|