mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
28 lines
829 B
Plaintext
28 lines
829 B
Plaintext
<%#
|
|
# Navigation
|
|
|
|
This partial is used to display the navigation in Administrate.
|
|
By default, the navigation contains navigation links
|
|
for all resources in the admin dashboard,
|
|
as defined by the routes in the `admin/` namespace
|
|
%>
|
|
|
|
<nav class="navigation" role="navigation">
|
|
<%= link_to(
|
|
"⇦ Back to site",
|
|
root_path,
|
|
class: "navigation__link button",
|
|
style: "color: #f6f7f7; background-color: #293f54; font-size: 15pt;",
|
|
"data-turbolinks": "false"
|
|
) %>
|
|
|
|
<% Administrate::Namespace.new(namespace).resources.each do |resource| %>
|
|
<%= link_to(
|
|
display_resource_name(resource),
|
|
[namespace, resource_index_route_key(resource)],
|
|
class: "navigation__link navigation__link--#{nav_link_state(resource)}",
|
|
style: "font-size: 15pt; text-decoration: none;"
|
|
) %>
|
|
<% end %>
|
|
</nav>
|