Sha256: 0a474f4fab0ce4f87e6e3517563304d504b4809f2e49652f7b15a39817bf0519
Contents?: true
Size: 669 Bytes
Versions: 5
Compression:
Stored size: 669 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>RailsApp</title> <%= stylesheet_link_tag :all %> <%= javascript_include_tag :defaults %> <%= csrf_meta_tag %> </head> <body> <% if user_signed_in? %> <%= link_to 'new article', new_article_path %> | <%= link_to 'sign out', destroy_user_session_path %> <% else %> <%= link_to 'sign in', new_user_session_path %> | <%= link_to 'sign up', new_user_registration_path %> <% end %> | <%= link_to 'articles', articles_path %> <div> <b>Article Search</b> <%= form_tag search_articles_path, :method => :get do %> <%= text_field_tag :query %> <%= submit_tag 'Search' %> <% end %> <%= yield %> </body> </html>
Version data entries
5 entries across 5 versions & 1 rubygems