mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
26 lines
920 B
Plaintext
26 lines
920 B
Plaintext
<!DOCTYPE html>
|
|
<html class="<%= Rails.env == "production" ? "production" : "development" %>" data-theme="dark">
|
|
<head>
|
|
<title><%= @title %> - Hackatime</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="color-scheme" content="dark">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= favicon_link_tag asset_path('favicon.png'), type: 'image/png' %>
|
|
<%= stylesheet_link_tag :app %>
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
|
|
</head>
|
|
|
|
<body class="bg-darker">
|
|
<div class="flex min-h-screen items-center justify-center mx-auto">
|
|
<%= yield %>
|
|
</div>
|
|
</body>
|
|
</html>
|