mirror of
https://github.com/we-promise/sure.git
synced 2026-04-14 09:34:05 +00:00
21 lines
642 B
Plaintext
21 lines
642 B
Plaintext
<%= content_for :content do %>
|
|
<div class="flex h-full bg-gray-25">
|
|
<div class="p-6 pb-20 w-[368px] shrink-0 h-full overflow-y-auto">
|
|
<% if content_for?(:sidebar) %>
|
|
<%= yield :sidebar %>
|
|
<% else %>
|
|
<%= render "layouts/sidebar" %>
|
|
<% end %>
|
|
</div>
|
|
<main class="grow px-20 pt-6 pb-32 h-full overflow-y-auto">
|
|
<%= yield %>
|
|
</main>
|
|
</div>
|
|
|
|
<% if (upgrade = get_upgrade_for_notification(Current.user, Setting.upgrades_mode)) %>
|
|
<%= render partial: "shared/upgrade_notification", locals: { upgrade: upgrade } %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= render template: "layouts/application" %>
|