Listing questions

<% @questions.each do |question| %> <% end %>
Title
<%= question.title %> <%= link_to 'Show', question %> <%= link_to 'Edit', edit_question_path(question) %> <%= link_to 'Destroy', question, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Question', new_question_path %>