1f346085b9
* main: (119 commits) Bust comment view cache Update lexxy to bring fixes from https://github.com/basecamp/lexxy/releases/tag/v0.1.24.beta Fix unexpected remove empty line from README Lightbox uses Stimulus target callbacks instead of data-action Add test coverage for the image lightbox Add tests for tenancy middleware and timezone cookie Refactor: Simplify TimeWindowParser using Rails convenience methods SMTP: support SMTPS on port 465 (#2132) Bump fizzy-saas to retain fewer docker images (#2134) Add test coverage for with_golden_first scope (#2130) Refactor: improve query scope composition with merge syntax (#2131) Validate avatar sizes Introduce Vips configuration Tailscale serve support (#2126) Update tests with final method naming: record! -> record CSP config to allow Minio in development Update fizzy-saas to get employee restriction in staging Drop staff restriction in beta and staging Unused Use new FIZZY_GH_TOKEN with limited access ...
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
<head>
|
|
<%= page_title_tag %>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, viewport-fit=cover">
|
|
<% unless @disable_view_transition %>
|
|
<meta name="view-transition" content="same-origin">
|
|
<% end %>
|
|
<meta name="color-scheme" content="light dark">
|
|
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
|
|
<meta name="theme-color" content="#0d181d" media="(prefers-color-scheme: dark)">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
<%= tag.meta name: "current-user-id", content: Current.user.id if Current.user %>
|
|
<%= tag.meta name: "vapid-public-key", content: Rails.configuration.x.vapid.public_key %>
|
|
|
|
<% turbo_refreshes_with method: :morph, scroll: :preserve %>
|
|
|
|
<%= render "layouts/theme_preference" %>
|
|
<%= stylesheet_link_tags %>
|
|
<%= javascript_importmap_tags %>
|
|
|
|
<%= tenanted_action_cable_meta_tag %>
|
|
<%= render "layouts/shared/user_css" %>
|
|
|
|
<%= yield :head %>
|
|
|
|
<link rel="manifest" href="<%= pwa_manifest_path(format: :json) %>">
|
|
<link rel="icon" href="/favicon.png" type="image/png">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
</head>
|