_modal.game.html.twig 470 B

12345678910111213141516171819202122232425
  1. {% extends 'modal.html.twig' %}
  2. {% block title %}{{ game.name }}{% endblock %}
  3. {% block content %}
  4. {% block header %}
  5. {% if game.getPicture %}
  6. <section class="modal-card-image">
  7. <figure class="image is-3by1">
  8. <img
  9. src="/images/games/{{ game.getPicture }}"
  10. alt="{{ game.getName }}"
  11. />
  12. </figure>
  13. </section>
  14. {% endif %}
  15. {% endblock %}
  16. {% block content %}
  17. <div>
  18. <p>{{ game.getDescription }}</p>
  19. </div>
  20. {% endblock %}