Sha256: 17f9e8dcb386f26694264f3e7c11615d8c373298d2b3f078dff78dfd99ca3645
Contents?: true
Size: 470 Bytes
Versions: 12
Compression:
Stored size: 470 Bytes
Contents
<!DOCTYPE html> <html> <head> <%= javascript_include_tag 'application' %> <%= csrf_meta_tag %> </head> <body> <div id="header"> <% if authenticated? -%> <%= link_to t(".sign_out"), sign_out_path %> <% 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
12 entries across 12 versions & 1 rubygems