2015-05-20 13:56:54 +08:00
|
|
|
<%- if rtl? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_rtl : :desktop_rtl) %>
|
2015-05-20 13:56:54 +08:00
|
|
|
<%- else %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile : :desktop) %>
|
2015-05-20 13:56:54 +08:00
|
|
|
<%- end %>
|
2013-02-11 19:41:23 +08:00
|
|
|
|
2013-05-02 15:22:27 +08:00
|
|
|
<%- if staff? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(:admin) %>
|
2014-03-08 21:25:03 +08:00
|
|
|
<%- end %>
|
2013-12-19 03:47:22 +08:00
|
|
|
|
2018-08-08 12:46:34 +08:00
|
|
|
<%- if theme_ids.present? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_theme : :desktop_theme) %>
|
2013-12-19 03:47:22 +08:00
|
|
|
<%- end %>
|
2019-08-21 00:39:52 +08:00
|
|
|
|
|
|
|
<%- Discourse.find_plugin_css_assets(include_official: allow_plugins?, include_unofficial: allow_third_party_plugins?).each do |file| %>
|
|
|
|
<%= discourse_stylesheet_link_tag(file) %>
|
|
|
|
<%- end %>
|