Sha256: 428ab48f052d371c5dda1e5515916d03bbe9ba9fccf8b7003064caabefaf4a47
Contents?: true
Size: 527 Bytes
Versions: 20
Compression:
Stored size: 527 Bytes
Contents
<!DOCTYPE html> <html> <head> <title><%%= content_for?(:title) ? yield(:title) : "Untitled" %></title> <%%= stylesheet_link_tag "<%= file_name %>" %> <%%= javascript_include_tag :defaults %> <%%= csrf_meta_tag %> <%%= yield(:head) %> </head> <body> <div id="container"> <%% flash.each do |name, msg| %> <%%= content_tag :div, msg, :id => "flash_#{name}" %> <%% end %> <%%= content_tag :h1, yield(:title) if show_title? %> <%%= yield %> </div> </body> </html>
Version data entries
20 entries across 18 versions & 7 rubygems