Sha256: 8b2619800cf0926a362c907630ce119832bfc8693aa172cfcc79442461e76c8d
Contents?: true
Size: 856 Bytes
Versions: 4
Compression:
Stored size: 856 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dummy</title> <%= stylesheet_link_tag "application" %> <%= stylesheet_link_tag "blogit" %> <%= 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", blogit.blog_root_path) %></h1> <%= yield %> </div> <div id="sidebar"> <%= blog_posts_archive_tag('archive-year', 'archive-month', 'archive-post') do |post| %> <% link_to(post.title, blogit.post_path(post)) %> <% end %> </div> <footer id="custom_footer"> By <%= link_to("Gavin Morrice", "http://gavinmorrice.com") %> </footer> <%= javascript_include_tag "application", "blogit" %> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems