Sha256: c3f9552c3327dd14cb08ba66bfc49a64ccf80559e114bcff0f07345c9fc0e02e
Contents?: true
Size: 485 Bytes
Versions: 7
Compression:
Stored size: 485 Bytes
Contents
<!DOCTYPE html> <html> <head> <%= javascript_include_tag 'application' %> <%= csrf_meta_tag %> </head> <body> <div id='header'> <% if signed_in? -%> <%= link_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