run.html.haml 541 B

12345678910111213141516
  1. %h4 #{@course.title}, by #{@course.user.handle}, lasts #{@course.duration} hours
  2. #presentation
  3. %div{"aria-role" => "navigation"}
  4. %a.deck-prev-link{href: "#", title: "Previous"} ←
  5. %a.deck-next-link{href: "#", title: "Next"} →
  6. %form.goto-form{action: ".", method: "get"}
  7. %label{for: "goto-slide"} Go to slide:
  8. %input#goto-slide{list: "goto-datalist", name: "slidenum", type: "text"}/
  9. %datalist#goto-datalist
  10. %input{type: "submit", value: "Go"}/
  11. = render file: @slides_path
  12. .row
  13. = render 'video_broadcast'