mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
15 lines
365 B
Plaintext
15 lines
365 B
Plaintext
<%#
|
|
# Stylesheet Partial
|
|
|
|
This partial imports the necessary stylesheets on each page.
|
|
By default, it includes the application CSS,
|
|
but each page can define additional CSS sources
|
|
by providing a `content_for(:stylesheet)` block.
|
|
%>
|
|
|
|
<% Administrate::Engine.stylesheets.each do |css_path| %>
|
|
<%= stylesheet_link_tag css_path %>
|
|
<% end %>
|
|
|
|
<%= yield :stylesheet %>
|