Sha256: be1d4f91d1fe811c5fbdb1d07d23b5d410199b877202dc417dce15fba36edd07
Contents?: true
Size: 522 Bytes
Versions: 17
Compression:
Stored size: 522 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
17 entries across 17 versions & 1 rubygems