Sha256: b61cb61811ed550f76a85be9b8b400f23429c3d61708ac67ddfd17610313a02e
Contents?: true
Size: 487 Bytes
Versions: 7
Compression:
Stored size: 487 Bytes
Contents
<!DOCTYPE html> <html> <head> <%= javascript_include_tag 'application' %> <%= csrf_meta_tag %> </head> <body> <div id="header"> <% if signed_in? -%> <%= button_to t('.sign_out'), sign_out_path, :method => :delete %> <% else -%> <%= link_to t('.sign_in'), sign_in_path %> <% end -%> </div> <div id="flash"> <% flash.each do |key, value| -%> <div id="flash_<%= key %>"><%=h value %></div> <% end %> </div> <%= yield %> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems