tabletop-companion/app/views/layouts/application.html.erb

23 lines
651 B
Plaintext
Raw Normal View History

2024-04-13 10:22:40 +00:00
<!DOCTYPE html>
<html>
<head>
2024-04-14 19:01:32 +00:00
<title><%= "#{yield(:title)} | " if content_for? :title %><%= t("forg") %></title>
2024-04-13 10:22:40 +00:00
<meta name="viewport" content="width=device-width,initial-scale=1">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
<%= javascript_importmap_tags %>
2024-04-14 19:01:32 +00:00
<meta name="turbo-refresh-method" content="morph">
<meta name="turbo-refresh-scroll" content="preserve">
2024-04-13 10:22:40 +00:00
</head>
<body>
2024-04-14 19:01:32 +00:00
<header>
<h1><%= link_to t("forg"), root_path %></h1>
</header>
<%= render partial: "shared/flash_messages" %>
2024-04-13 10:22:40 +00:00
<%= yield %>
</body>
</html>