Friday, September 20, 2024 1:37:42 AM
> settings

Customize


Authenticate

> application.html.erb
<!doctype html>
<html lang="en" data-bs-theme="dark">
  <head>
    <title>itsthedevman</title>

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="utf-8">
    <meta name="turbo-refresh-method" content="morph">
    <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" data-turbo-permanent>

    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>
    <%= vite_client_tag %>

    <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
    <style>
      :root {
        --reading-font: <%= cookies["reading-font"] %>;
      }
    </style>
  </head>

  <body>
    <div class="screen">
      <%= render "layouts/screen" %>
    </div>
  </body>

  <div class="text-center">
    <small class="text-secondary">
      All opinions represented herein are my own
      <div class="d-block d-md-none"></div>
      <span class="d-none d-md-inline">-</span>
      &copy; <%= copyright %> <i class="fa-sharp fa-thin fa-t-rex"></i>
      <div class="d-block d-md-none"></div>
      <span class="d-none d-md-inline">-</span>
      build <%= ApplicationController::GIT_REV %>
    </small>
  </div>

  <%= vite_javascript_tag "application", "data-turbo-track": "reload", defer: true, nonce: true %>
</html>
All opinions represented herein are my own
- © 2024 itsthedevman
- build 340fbb8