2015-05-20 13:56:54 +08:00
|
|
|
<%- if rtl? %>
|
|
|
|
<%= DiscourseStylesheets.stylesheet_link_tag(mobile_view? ? :mobile_rtl : :desktop_rtl) %>
|
|
|
|
<%- else %>
|
|
|
|
<%= DiscourseStylesheets.stylesheet_link_tag(mobile_view? ? :mobile : :desktop) %>
|
|
|
|
<%- end %>
|
2013-02-11 19:41:23 +08:00
|
|
|
|
2013-05-02 15:22:27 +08:00
|
|
|
<%- if staff? %>
|
2015-08-19 02:13:40 +08:00
|
|
|
<%= DiscourseStylesheets.stylesheet_link_tag(:admin) %>
|
2014-03-08 21:25:03 +08:00
|
|
|
<%- end %>
|
2013-12-19 03:47:22 +08:00
|
|
|
|
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= SiteCustomization.custom_stylesheet(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
|
|
|
|
<%- end %>
|