Sitepoint demo app for learning to use Sinatra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

10 lines
353 B

  1. %h1 Robot Factory
  2. %img#waiting{ src:"https://s3.amazonaws.com/daz4126/waiting.gif" }
  3. %form.build{ action:"/build/robot", method:"POST" }
  4. %input.button{ type:"submit", value:"Build A Robot!" }
  5. -if @robots.any?
  6. %ul#robots
  7. - @robots.each do |robot|
  8. = render(:haml, :robot, locals: { robot: robot })
  9. -else
  10. %h2 You Need To Build Some Robots!