You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cryptcheck-rails/app/views/layouts/application.html.erb

15 lines
329 B

<!DOCTYPE html>
<html>
<head>
<title>CryptcheckRails</title>
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= javascript_include_tag 'application' %>
<%= csrf_meta_tags %>
<%= yield :head %>
</head>
<body>
<%= render partial: 'headers' %>
<%= render partial: 'flash' %>
<%= yield %>
</body>
</html>