| 12345678910111213141516171819202122232425 | {% extends 'modal.html.twig' %}{% block title %}{{ game.name }}{% endblock %}{% block content %}{% block header %}{% if game.getPicture %}  <section class="modal-card-image">    <figure class="image is-3by1">      <img        src="/images/games/{{ game.getPicture }}"        alt="{{ game.getName }}"      />    </figure>  </section>{% endif %}{% endblock %}{% block content %} 	<div>      <p>{{ game.getDescription }}</p>    </div>{% endblock %}
 |