mirror of
https://github.com/discourse/discourse.git
synced 2026-08-11 02:59:07 +08:00
14 lines
586 B
Text
Vendored
14 lines
586 B
Text
Vendored
<%= discourse_color_scheme_stylesheets %>
|
|
|
|
<%= discourse_stylesheet_link_tag 'publish', theme_id: nil %>
|
|
|
|
<%- if theme_id.present? %>
|
|
<%= discourse_stylesheet_link_tag(:common_theme, supports_rtl: true) %>
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_theme : :desktop_theme) %>
|
|
<%- end %>
|
|
|
|
<%- Discourse.find_plugin_css_assets(include_official: allow_plugins?, include_unofficial: allow_third_party_plugins?, mobile_view: mobile_view?, desktop_view: !mobile_view?, request: request, rtl: rtl?).each do |file| %>
|
|
<%= discourse_stylesheet_link_tag(file) %>
|
|
<%- end %>
|
|
|
|
|