Some checks failed
deploy / deploy (push) Has been cancelled
- add ?edit=page/theme/settings param when opening editor or switching tabs - remove ?edit param when closing editor - restore .themed class on shop_root for editor panel background tokens - collapse editor when navigating back to URL without ?edit param Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
90 lines
3.6 KiB
Plaintext
90 lines
3.6 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
|
<meta
|
|
name="description"
|
|
content={
|
|
assigns[:page_description] || @site_description ||
|
|
"Welcome to #{@site_name}"
|
|
}
|
|
/>
|
|
<!-- Favicon & PWA -->
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
|
<link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
<meta name="theme-color" content={@theme_settings.accent_color || "#000000"} />
|
|
<.live_title suffix={" · #{@site_name}"}>
|
|
{assigns[:page_title]}
|
|
</.live_title>
|
|
<% og_title =
|
|
if assigns[:page_title],
|
|
do: "#{assigns[:page_title]} · #{@site_name}",
|
|
else: @site_name
|
|
|
|
og_description =
|
|
assigns[:page_description] ||
|
|
@site_description ||
|
|
"Welcome to #{@site_name}" %>
|
|
<meta property="og:site_name" content={@site_name} />
|
|
<meta property="og:title" content={og_title} />
|
|
<meta property="og:description" content={og_description} />
|
|
<meta property="og:type" content={assigns[:og_type] || "website"} />
|
|
<%= if assigns[:og_url] do %>
|
|
<link rel="canonical" href={assigns[:og_url]} />
|
|
<meta property="og:url" content={assigns[:og_url]} />
|
|
<% end %>
|
|
<%= if assigns[:og_image] do %>
|
|
<meta property="og:image" content={assigns[:og_image]} />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:image" content={assigns[:og_image]} />
|
|
<% else %>
|
|
<meta name="twitter:card" content="summary" />
|
|
<% end %>
|
|
<meta name="twitter:title" content={og_title} />
|
|
<meta name="twitter:description" content={og_description} />
|
|
<%= if assigns[:json_ld] do %>
|
|
<script type="application/ld+json">
|
|
<%= Phoenix.HTML.raw(assigns[:json_ld]) %>
|
|
</script>
|
|
<% end %>
|
|
<!-- Preload critical fonts for the current typography preset -->
|
|
<%= for preload <- Berrypod.Theme.Fonts.preload_links(
|
|
@theme_settings.typography,
|
|
&BerrypodWeb.Endpoint.static_path/1
|
|
) do %>
|
|
<link rel="preload" href={preload.href} as="font" type="font/woff2" crossorigin />
|
|
<% end %>
|
|
<!-- Pre-declare layer order so reset < components regardless of load order -->
|
|
<style>
|
|
@layer properties, reset, primitives, tokens, theme, base, components, layout, utilities, overrides;
|
|
</style>
|
|
<link phx-track-static rel="stylesheet" href={~p"/assets/css/theme.css"} />
|
|
<link phx-track-static rel="stylesheet" href={~p"/assets/css/shop.css"} />
|
|
<%= if assigns[:current_scope] && @current_scope.user do %>
|
|
<link phx-track-static rel="stylesheet" href={~p"/assets/css/admin.css"} />
|
|
<% end %>
|
|
<script defer phx-track-static src={~p"/assets/js/app.js"}>
|
|
</script>
|
|
<!-- Generated theme CSS with @font-face declarations -->
|
|
<style id="theme-css">
|
|
<%= Phoenix.HTML.raw(@generated_css) %>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<div style="background: #fef3c7; color: #92400e; padding: 0.75rem 1rem; text-align: center; font-size: 0.875rem;">
|
|
This shop works without JavaScript, but some features work better with it enabled.
|
|
</div>
|
|
</noscript>
|
|
<%!-- .themed here provides fallback theme tokens; .shop-container.themed inside
|
|
LiveView has data attributes for live updates --%>
|
|
<div class="shop-root themed">
|
|
{@inner_content}
|
|
</div>
|
|
</body>
|
|
</html>
|