Sha256: 5a14ed1edf5d4d884ef6c6696fb65d17bc0acd2179d5d6c3af0df37fd4c91bfe
Contents?: true
Size: 861 Bytes
Versions: 4
Compression:
Stored size: 861 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title><%= title %></title> <%= render "blogit/posts/meta_tags", post: @post if @post %> <%= stylesheet_link_tag "application" %> <%= csrf_meta_tags %> </head> <body> <div id="content"> <h1><%= link_to("My Awesome Blog", main_app.root_path) %></h1> <main id="main_content"> <%= yield %> </main> <aside id="side_content"> <h3>Archive</h3> <%= archive_list_for_posts(Blogit::Post.all) %> </aside> </div> <footer id="application_footer"> <%= link_to("Blogit", "http://blogit.katanacode.com", target: "_blank") %> was created by your pals at <%= link_to('Katana Code', "http://facebook.com/katanacode", target: "_blank") %> :o) </footer> <%= javascript_include_tag "application", "blogit" %> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems