mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
17 lines
432 B
Plaintext
17 lines
432 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 %>
|
|
|
|
<%= stylesheet_link_tag "administrate/overrides", media: "all" %>
|
|
|
|
<%= yield :stylesheet %>
|