0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/views/layouts/wizard.html.erb

56 Zeilen
1,7 KiB
Text

2017-09-25 16:47:40 +02:00
<html>
<head>
2018-07-16 06:28:24 +02:00
<%= discourse_stylesheet_link_tag :wizard, theme_id: nil %>
<%= discourse_stylesheet_link_tag :wizard_custom %>
2020-04-13 14:17:22 +02:00
<%- if theme_ids.present? %>
<%= discourse_stylesheet_link_tag (mobile_view? ? :mobile_theme : :desktop_theme) %>
<%- end %>
2020-05-14 05:42:11 +02:00
2020-05-15 01:31:39 +02:00
<%= preload_script "locales/#{I18n.locale}" %>
2017-09-25 16:47:40 +02:00
<%= preload_script "ember_jquery" %>
<%= preload_script "wizard-vendor" %>
<%= preload_script "wizard-application" %>
<%= preload_script "wizard-custom-globals" %>
<%= preload_script "wizard-raw-templates" %>
2017-09-25 16:47:40 +02:00
<%= preload_script "wizard-custom" %>
2017-10-09 07:52:09 +02:00
<%= preload_script "wizard-plugin" %>
<%= preload_script "pretty-text-bundle" %>
2019-08-27 06:49:29 +02:00
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
2017-09-25 16:47:40 +02:00
<%= csrf_meta_tags %>
2018-06-14 02:00:50 +02:00
<%- unless customization_disabled? %>
<%= raw theme_lookup("head_tag") %>
<%- end %>
2017-10-09 07:52:09 +02:00
<%= server_plugin_outlet "custom_wizard" %>
<%= tag.meta id: 'data-discourse-setup', data: client_side_setup_data %>
2018-08-20 01:08:28 +02:00
<meta name="discourse_theme_ids" content="<%= theme_ids&.join(",") %>">
2017-09-25 16:47:40 +02:00
<meta name="discourse-base-uri" content="<%= Discourse.base_uri %>">
<%= render partial: "layouts/head" %>
2017-10-17 09:18:53 +02:00
<title><%= wizard_page_title %></title>
2017-09-25 16:47:40 +02:00
</head>
<body class='custom-wizard'>
<div id='custom-wizard-main'></div>
2017-09-25 16:47:40 +02:00
2018-06-14 02:00:50 +02:00
<%- unless customization_disabled? %>
<%= raw theme_lookup("body_tag") %>
<%- end %>
2019-10-08 07:46:13 +02:00
<%- if current_user %>
<%= preload_script 'wizard-custom-start' %>
<%- else %>
<%= preload_script 'wizard-custom-guest' %>
<%- end %>
2019-02-20 07:27:17 +01:00
<div id="svg-sprites" style="display:none;">
<div class="fontawesome">
<%= raw SvgSprite.bundle %>
</div>
</div>
2017-09-25 16:47:40 +02:00
</body>
</html>