2023-08-08 16:48:09 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-09-17 13:59:06 +00:00
|
|
|
<title><%= @title.present? ? "#{@title} | #{t('.site_title')}" : t(".site_title") %></title>
|
2023-08-08 16:48:09 +00:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%= csp_meta_tag %>
|
2023-08-15 13:50:39 +00:00
|
|
|
<%= javascript_importmap_tags %>
|
2023-08-08 16:48:09 +00:00
|
|
|
|
|
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-08-18 16:20:31 +00:00
|
|
|
<header>
|
2023-08-18 18:36:24 +00:00
|
|
|
<%= link_to root_path do %>
|
2023-09-17 13:59:06 +00:00
|
|
|
<h1><%= t(".site_title") %></h1>
|
2023-08-18 18:36:24 +00:00
|
|
|
<% end %>
|
2023-08-18 16:20:31 +00:00
|
|
|
<nav>
|
|
|
|
<ul>
|
2023-09-29 13:29:50 +00:00
|
|
|
<li><%= link_to t(".home"), root_path %></li>
|
2023-10-05 18:46:09 +00:00
|
|
|
<li><%= link_to t(".blog_posts"), blog_posts_path %></li>
|
2023-09-29 13:29:50 +00:00
|
|
|
<li><%= link_to t(".microposts"), microposts_path %></li>
|
2023-08-18 16:20:31 +00:00
|
|
|
<% if logged_in? %>
|
2023-12-29 14:27:09 +00:00
|
|
|
<li><%= link_to t(".diary_entries"), diary_entries_path %></li>
|
2023-09-17 13:59:06 +00:00
|
|
|
<li><%= link_to t(".profile"), user_path(current_user) %></li>
|
|
|
|
<li><%= link_to t(".log_out"), log_out_path, data: { turbo_method: :delete } %></li>
|
2023-08-18 16:20:31 +00:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2023-08-15 13:50:39 +00:00
|
|
|
<main>
|
2023-08-18 18:08:49 +00:00
|
|
|
<%= render "shared/flash" %>
|
2023-08-15 13:50:39 +00:00
|
|
|
<%= yield %>
|
|
|
|
</main>
|
2023-08-08 16:48:09 +00:00
|
|
|
</body>
|
|
|
|
</html>
|