<%= question["header"].html_safe.present? ? question["header"].html_safe : "missing question header"%>
<%if outer_grid == 'three-grid' %>
<% question["answer_options"].each_with_index do |answer_option, index| %> <% if index.to_i.even? %>
<% end %> <%end %>
<% question["answer_options"].each_with_index do |answer_option, index| %> <% if !index.to_i.even?%>
<% end %> <%end %>
<% else %>
<% question["answer_options"].each_with_index do |answer_option, index| %> <% if index.to_i.even? && index.to_i%4 != 0 %>
<% end %> <%end %>
<% question["answer_options"].each_with_index do |answer_option, index| %> <% if !index.to_i.even? && index.to_i%3 != 0%>
<% end %> <%end %>
<% question["answer_options"].each_with_index do |answer_option, index| %> <% if index.to_i.even? && index.to_i%4 == 0%>
<% end %> <%end %>
<% question["answer_options"].each_with_index do |answer_option, index| %> <% if !index.to_i.even? && index.to_i%3 == 0%>
<% end %> <%end %>
<% end %>