mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +00:00
* Add breadcrumbs support across application Fixes #1896 * Potential fix for tests * Simplify breadcrumbs implementation Remove complex breadcrumbs logic from controllers and concern, replacing with a simpler default approach that sets a basic breadcrumb based on the current controller name * Refactor page header and breadcrumbs rendering Remove complex breadcrumbs helper method and update layout to use more flexible content_for approach for page headers and breadcrumbs * Add fallback breadcrumbs rendering to settings layout
11 lines
396 B
Plaintext
11 lines
396 B
Plaintext
<%# This partial renders the page header with title and optional subtitle %>
|
|
<header class="space-y-6">
|
|
<% if local_assigns[:title].present? %>
|
|
<div class="space-y-1">
|
|
<h1 class="text-3xl font-medium text-gray-900"><%= title %></h1>
|
|
<% if local_assigns[:subtitle].present? %>
|
|
<p class="text-gray-500"><%= subtitle %></p>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</header> |