<%= @desc %>
<% if @cost < 10 %> Only <%= @cost %>!!! <% else %> Call for a price, today! <% end %>
<%= @desc %>
<% if @cost < 10 %> Only <%= @cost %>!!! <% else %> Call for a price, today! <% end %>
%html %head %title Ruby Toys -- #{@name} %body %h1 #{@name} (#{@code}) %p= @desc %ul - @features.each do |f| %li %b= f %p - if @cost < 10 %b Only #{@cost}!!! - else Call for a price, today!<%= @desc %>
<% if @cost < 10 %> Only <%= @cost %>!!! <% else %> Call for a price, today! <% end %>
Ruby Toys -- {{ name }}{{ desc }}
{% if cost < 10 %} Only {{ cost }}!!! {% else %} Call for a price, today! {% endif %}
<%= @desc %>
<% if @cost < 10 %> Only <%= @cost %>!!! <% else %> Call for a price, today! <% end %>
class ExamplePage < Phlex::HTML def template html do head { title { "Ruby Toys -- #{@name}" } } body do h1 { "#{@name} (#{@code})" } p { @desc } ul do @features.each do |f| li { b { f } } end end p do if @cost < 10 b { "Only #{@cost}!!!" } else "Call for a price, today!" end end end end end end