eae17b82b4
* main: (65 commits) Repair scope for card styles within the columns view Add missing list to cards page Account for simpler public views Fix public layout Pull board-tools outside of the list for mobile saas: move log_level setting into an environment variable Restore log level configurability in production environment Remove engagements Use notch class so Save button is positioned correctly Go back to board after clearing filters Revert "Use existing no_filtering_url to direct back to the board when clearing filters" Use existing no_filtering_url to direct back to the board when clearing filters Ensure filters sit on top of cards Fix public boards Fix card grid layout Fix Chinese/Japanese characters missing from printed PDFs on macOS Add SQLite FTS5 support for CJK search Add CJK (Chinese, Japanese, Korean) search support Fix scrolling on mobile Remember expanded state on navigation ...
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<%= render "layouts/shared/head" %>
|
|
|
|
<body class="<%= @body_class %>" data-controller="bridge--page bridge--insets local-time timezone-cookie turbo-navigation theme" data-action="turbo:morph@window->local-time#refreshAll turbo:before-visit@document->turbo-navigation#rememberLocation" data-platform="<%= platform.type %>" <%= "data-bridge--page-title-value=#{@page_title}" if @page_title %>>
|
|
<div id="global-container">
|
|
<header class="header header--mobile-actions-stack <%= @header_class %>" id="header">
|
|
<a href="#main" class="header__skip-navigation btn" data-turbo="false">Skip to main content</a>
|
|
<%= render "my/menu" if Current.user %>
|
|
<%= yield :header %>
|
|
</header>
|
|
|
|
<%= render "layouts/shared/flash" %>
|
|
<%= render "layouts/shared/time_zone" if Current.user %>
|
|
|
|
<main id="main">
|
|
<%= yield %>
|
|
</main>
|
|
</div>
|
|
|
|
<footer id="footer" class="hide-on-native">
|
|
<%= yield :footer %>
|
|
|
|
<% if Current.user && !@hide_footer_frames %>
|
|
<div id="footer_frames" data-turbo-permanent="true">
|
|
<%= render "bar/bar" %>
|
|
<%= render "my/pins/tray" %>
|
|
<%= render "notifications/tray" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render "layouts/shared/welcome_letter" if flash[:welcome_letter] %>
|
|
</footer>
|
|
</body>
|
|
</html>
|