Sha256: 4e1a6b52bd9cc3deda2d7ea769af77657826896e9abd9d7414142849c3d6878c
Contents?: true
Size: 342 Bytes
Versions: 1
Compression:
Stored size: 342 Bytes
Contents
<% content_for :demo do %> <h1>This is content yielded from a content_for</h1> <% end %> <div class='demo'><%= yield_content :demo %></div> <% content_for :demo2 do |fname, lname| %> <h1>This is content yielded with name <%= fname + " " + lname %></h1> <% end %> <div class='demo2'><%= yield_content :demo2, "Johnny", "Smith" %></div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
padrino-helpers-0.10.2 | test/fixtures/markup_app/views/content_for.erb |