mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 07:27:14 +08:00
![Penar Musaraj](/assets/img/avatar_default.png)
* First take on subsetting svg icons * FontAwesome 5 svg subset WIP * Include icons from plugins/badges into svg sprite subset * add svg icon support to themes * Add spec for SvgSprite * Misc. SVG icon fixes * Use FA5 svgs in local-dates plugin * CSS adjustments, fix SVG icons in group flair * Use SVG icons in poll plugin * Add SVG icons to /wizard
27 lines
716 B
Plaintext
27 lines
716 B
Plaintext
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag :wizard, theme_ids: nil %>
|
|
<%= preload_script 'ember_jquery' %>
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
<%= preload_script 'wizard-vendor' %>
|
|
<%= preload_script 'wizard-application' %>
|
|
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
<title><%= t 'wizard.title' %></title>
|
|
</head>
|
|
|
|
<body class='wizard'>
|
|
<div id='wizard-main'></div>
|
|
<%= preload_script 'wizard-start' %>
|
|
|
|
<div id="svg-sprites" style="display:none;">
|
|
<div class="fontawesome">
|
|
<%= raw SvgSprite.bundle %>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|