Sha256: 80ed9dd0fa6f13953612af3624342b210a779dab22643c93e194f5fdb2cc2d7a
Contents?: true
Size: 565 Bytes
Versions: 8
Compression:
Stored size: 565 Bytes
Contents
<!DOCTYPE html> <html> <head> <%%= tb_page_title() %> <%%= stylesheet_link_tag "application", :media => "all" %> <%%= javascript_include_tag "application" %> <%%= csrf_meta_tags %> <%%= yield :head %> </head> <body> <%% if flash[:notice] %> <p class="flash flash-notice"><%%= flash[:notice] %> <a href="#" class="flash-remove">X</a></p> <%% elsif flash[:error] %> <p class="flash flash-error"><%%= flash[:error] %> <a href="#" class="flash-remove">X</a></p> <%% end %> <%%= content_for?(:body) ? yield(:body) : yield %> </body> </html>
Version data entries
8 entries across 8 versions & 1 rubygems