25 lines
676 B
Plaintext
25 lines
676 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= "#{yield(:title)} | " if content_for? :title %><%= t("forg") %></title>
|
|
<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 %>
|
|
<meta name="turbo-refresh-method" content="morph">
|
|
<meta name="turbo-refresh-scroll" content="preserve">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1><%= link_to t("forg"), root_path %></h1>
|
|
</header>
|
|
<%= render partial: "shared/flash_messages" %>
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|