This repository has been archived on 2020-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
counter/app/views/layouts/application.html.erb

17 lines
342 B
Plaintext
Raw Normal View History

2020-05-15 01:02:59 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Counter</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
2020-05-21 06:06:41 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2020-05-15 01:02:59 +00:00
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= javascript_pack_tag 'application' %>
</head>
<body>
<%= yield %>
</body>
</html>