Sha256: 6740848895644def37ad1c9fe10d440e1a1eba0924a7804502ed3f8d24b24653
Contents?: true
Size: 515 Bytes
Versions: 18
Compression:
Stored size: 515 Bytes
Contents
<!DOCTYPE html> <html> <head> <title><%= content_for?(:title) ? yield(:title) : "Untitled" %></title> <%= stylesheet_link_tag "application" %> <%= javascript_include_tag :application %> <%= 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
18 entries across 18 versions & 2 rubygems