-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathlayout.erb
26 lines (24 loc) · 1016 Bytes
/
layout.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html dir="<%= text_direction %>" lang="<%= locale %>">
<head>
<title><%= environment_title_prefix %><%= Sidekiq::NAME %></title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link href="<%= root_path %>stylesheets/style.css" media="screen" rel="stylesheet" type="text/css" nonce="<%= csp_nonce %>" />
<link rel="apple-touch-icon" href="<%= root_path %>images/apple-touch-icon.png">
<link rel="shortcut icon" type="image/ico" href="<%= root_path %>images/favicon.ico" />
<script type="text/javascript" src="<%= root_path %>javascripts/application.js" nonce="<%= csp_nonce %>"></script>
<meta name="google" content="notranslate" />
<%= display_custom_head %>
</head>
<body class="admin" data-locale="<%= locale %>">
<%= erb :_nav %>
<main id="page">
<div class="container">
<%= erb :_summary %>
<%= yield %>
</div>
</main>
<%= erb :_footer %>
</body>
</html>