Sha256: 5faa7313f758c7fee85fd456a2f82094938236de2acaba2eaedadda653deeecc
Contents?: true
Size: 639 Bytes
Versions: 25
Compression:
Stored size: 639 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dummy</title> <%= stylesheet_link_tag "blogit", "application" %> <%= csrf_meta_tags %> </head> <body> <div id="content"> <% if current_user %> <%= link_to("log out", main_app.session_path, method: :delete) %> <% else %> <%= link_to("log in", main_app.new_session_path) %> <% end %> <h1><%= link_to("My Awesome Blog", root_path) %></h1> <%= yield %> </div> <footer id="application_footer"> By <%= link_to("Gavin Morrice", "http://gavinmorrice.com") %> </footer> <%= javascript_include_tag "blogit", "application" %> </body> </html>
Version data entries
25 entries across 25 versions & 1 rubygems