mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 12:13:37 +08:00
13 lines
437 B
Plaintext
13 lines
437 B
Plaintext
<%- unless SiteCustomization.override_default_style(session[:preview_style]) %>
|
|
<%=stylesheet_link_tag "application"%>
|
|
<%- end %>
|
|
|
|
<%- if mini_profiler_enabled? %>
|
|
<%- Rack::MiniProfiler.step "stylsheet" do%>
|
|
<%= stylesheet_link_tag "admin"%>
|
|
<%-end%>
|
|
<%- elsif admin? %>
|
|
<%= stylesheet_link_tag "admin"%>
|
|
<%-end%>
|
|
<%=SiteCustomization.custom_stylesheet(session[:preview_style])%>
|