Listing The Jobs
Goals
Steps
Step 1: read the jobs in the console
Discussion: Rails Console
Step 2: read the jobs in the controller
def index @jobs = Job.all endStep 3: show the jobs in the view
<% @jobs.each do |job| %> <h3><%= job.title %></h3> <p><%= job.description %></p> <% end %>Discussion: ERB
Now would be a good time to commit to git
Next Step:
Go on to Add A Navbar