Sha256: 51eb0a700a548924cac6093455f5db27317ce66568ea88d470c1c9fd9887a4a3
Contents?: true
Size: 646 Bytes
Versions: 4
Compression:
Stored size: 646 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <%%= 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
4 entries across 4 versions & 1 rubygems