Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
53 Zeilen
1,6 KiB
Text
53 Zeilen
1,6 KiB
Text
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag :wizard, theme_id: nil %>
|
|
<%= discourse_stylesheet_link_tag :wizard_custom %>
|
|
<%- if theme_ids.present? %>
|
|
<%= discourse_stylesheet_link_tag (mobile_view? ? :mobile_theme : :desktop_theme) %>
|
|
<%- end %>
|
|
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
<%= preload_script "ember_jquery" %>
|
|
<%= preload_script "wizard-vendor" %>
|
|
<%= preload_script "wizard-application" %>
|
|
<%= preload_script "wizard-custom-lib" %>
|
|
<%= preload_script "wizard-custom" %>
|
|
<%= preload_script "wizard-plugin" %>
|
|
<%= preload_script "pretty-text-bundle" %>
|
|
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%- unless customization_disabled? %>
|
|
<%= raw theme_lookup("head_tag") %>
|
|
<%- end %>
|
|
|
|
<%= server_plugin_outlet "custom_wizard" %>
|
|
|
|
<meta name="discourse_theme_ids" content="<%= theme_ids&.join(",") %>">
|
|
<meta name="discourse-base-uri" content="<%= Discourse.base_uri %>">
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
<title><%= wizard_page_title %></title>
|
|
</head>
|
|
|
|
<body class='custom-wizard'>
|
|
<div id='custom-wizard-main'></div>
|
|
|
|
<%- unless customization_disabled? %>
|
|
<%= raw theme_lookup("body_tag") %>
|
|
<%- end %>
|
|
|
|
<%- if current_user %>
|
|
<%= preload_script 'wizard-custom-start' %>
|
|
<%= preload_script 'wizard-raw-templates' %>
|
|
<%- else %>
|
|
<%= preload_script 'wizard-custom-guest' %>
|
|
<%- end %>
|
|
|
|
<div id="svg-sprites" style="display:none;">
|
|
<div class="fontawesome">
|
|
<%= raw SvgSprite.bundle %>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|