[Rails] Wine cellar inventory tracker.
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title><%= content_for(:title) || "Flacon" %></title>
5
<meta name="viewport" content="width=device-width,initial-scale=1">
6
<meta name="apple-mobile-web-app-capable" content="yes">
7
<%= csrf_meta_tags %>
8
<%= csp_meta_tag %>
9
10
<%= yield :head %>
11
12
<link rel="manifest" href="/manifest.json">
13
<link rel="icon" href="/icon.png" type="image/png">
14
<link rel="icon" href="/icon.svg" type="image/svg+xml">
15
<link rel="apple-touch-icon" href="/icon.png">
16
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
17
</head>
18
19
<body>
20
<%= yield %>
21
</body>
22
</html>
23