Guest User

Untitled

a guest
Apr 25th, 2018
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. class MainController < Controller
  2. # the index action is called automatically when no other action is specified
  3. def index
  4. @title = "Ramaze Partials with Etanni"
  5.  
  6. # create an array of contact objects which are accessible to index.xhtml
  7. @contacts = [
  8. Contact.new("John", "Smith", "416-323-5291", "jsmith@gmail.com"),
  9. Contact.new("Mary", "McInnis", "905-591-3234", "mary.mcinnis@gmail.com"),
  10. Contact.new("Edgar", "Elis", "784-152-4467", "elisgar@gmail.com"),
  11. ]
  12. end
  13. end
Add Comment
Please, Sign In to add comment