2017-07-27 21:26:03 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta data-hook="head-js">
|
2017-07-31 16:42:40 +08:00
|
|
|
<title><%= t('nav.title') %></title>
|
2017-07-27 21:26:03 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
2017-08-21 21:30:54 +08:00
|
|
|
<%= csrf_meta_tags %>
|
2017-09-19 19:08:08 +08:00
|
|
|
<%= stylesheet_pack_tag 'styles' %>
|
2017-07-27 21:26:03 +08:00
|
|
|
<%= favicon_link_tag "favicon.ico" %>
|
|
|
|
<%= favicon_link_tag "favicon-16.png", type: "image/png", size: "16x16" %>
|
|
|
|
<%= favicon_link_tag "favicon-32.png", type: "image/png", size: "32x32" %>
|
|
|
|
<%= favicon_link_tag "favicon-48.png", type: "image/png", size: "48x48" %>
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-07-28 16:52:25 +08:00
|
|
|
<noscript>
|
2017-07-31 16:42:40 +08:00
|
|
|
<%= t('body.notice') %>
|
2017-07-28 16:52:25 +08:00
|
|
|
</noscript>
|
2017-07-27 21:26:03 +08:00
|
|
|
<div id="root"></div>
|
2017-07-31 16:42:40 +08:00
|
|
|
<%= yield %>
|
2017-10-24 21:39:06 +08:00
|
|
|
|
|
|
|
<script>
|
|
|
|
// GLOBALS
|
|
|
|
window.IN_REQUEST = false;
|
|
|
|
</script>
|
2017-07-27 21:26:03 +08:00
|
|
|
</body>
|
|
|
|
</html>
|