Files
fizzy/app/views/layouts/public.html.erb
T
Sean Mitchell 9bd3610a8b Merge branch 'main' into update-icon
* main: (36 commits)
  Update tests
  Avoid capitalizing "board"
  Rename Fizzy, Boxcar
  SPace out pinstripes
  Add script for configuring production load balancers
  Fix the default tenant in migration-audit
  Transitions wipe from right
  Use canvas BG color
  Pinstripe background
  dev: Fix the default tenant to be the correct Honcho id
  Indicate account name in settings
  Menu button always has the product name
  bin/setup detects when it needs to set up seeds
  Indicate account name in settings
  Menu button always has the product name
  bin/setup detects when it needs to set up seeds
  'Fizzy' -> 'Boxcar'
  pre-connect: make sure we're matching against unquoted hostnames
  Add a migrations check to CI
  Remove schema changes introduced in da413e75
  ...
2025-10-22 14:32:59 -07:00

23 lines
720 B
Plaintext

<!DOCTYPE html>
<html>
<%= render "layouts/shared/head" %>
<body class="public" data-controller="local-time timezone-cookie" data-action="turbo:morph@window->local-time#refreshAll">
<header class="header" id="header">
<a href="#main" class="header__skip-navigation btn" data-turbo="false">Skip to main content</a>
<%= yield :header %>
</header>
<main id="main">
<%= yield %>
</main>
<footer id="footer">
<div class="justify-center center margin-block-double flex align-end gap">
<%= image_tag "logo.png", size: 28 %>
<strong><a href="https://box-car.com" class="txt-ink">Made with Boxcar&trade;</a></strong>
</div>
</footer>
</body>
</html>