diff options
Diffstat (limited to 'services/app/templates/answer_new.html.twig')
| -rw-r--r-- | services/app/templates/answer_new.html.twig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/services/app/templates/answer_new.html.twig b/services/app/templates/answer_new.html.twig new file mode 100644 index 0000000..9dbf96e --- /dev/null +++ b/services/app/templates/answer_new.html.twig @@ -0,0 +1,12 @@ +{% extends '_page.html.twig' %} + +{% block content %} + <h2>{{ quiz.title }}</h2> + <p> + {{ quiz.description }} + </p> + <h3>実装例</h3> + <pre><code class="hljs language-php">{{ quiz.example_code }}</code></pre> + <h3>回答</h3> + {{ include('form/_form.html.twig') }} +{% endblock %} |
