mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
355 B
Text
13 lines
355 B
Text
<%- unless SiteCustomization.override_default_style(session[:preview_style]) %>
|
|
<% if mobile_view? %>
|
|
<%= stylesheet_link_tag "mobile" %>
|
|
<% else %>
|
|
<%= stylesheet_link_tag "application" %>
|
|
<% end %>
|
|
<%- end %>
|
|
|
|
<%- if staff? %>
|
|
<%= stylesheet_link_tag "admin"%>
|
|
<%-end%>
|
|
|
|
<%=SiteCustomization.custom_stylesheet(session[:preview_style])%>
|