{% set questions = [{ id: 1, title: "What is a prop in Angular?" },{ id: 2, title: "How you define something?" },{ id: 3, title: "Can you deploy to production?" }] %} {% for question in questions %}
menu
Q: {{ question.title }}
Delete
{% if question.id == 1 %}
{% include 'pages/_instructor.quiz-answers_1.html' %}
{% endif %} {% if question.id == 2 %}
{% include 'pages/_instructor.quiz-answers_2.html' %}
{% endif %} {% if question.id == 3 %}
{% include 'pages/_instructor.quiz-answers_3.html' %}
{% endif %}
{% endfor %}