{% extends 'base.html.twig' %} {% block title %}{{ parent() }} - Game{% endblock %} {% block content %}
{{ 'nav.home'|trans }}

{{ 'game.subtitle'|trans }}

{% if game.iswon %}

{{ 'game.message.win'|trans }}

{% endif %} {% if game.ishanged %}

{{ 'game.message.lose'|trans }}

{% endif %} {% if not game.isover %}

{{ 'game.attempts'|trans({'%attempts%' : remaining_attempts}) }}

{% endif %}

{{ 'game.reset'|trans }}


{% if not game.isover %}

{{ 'game.try_letter'|trans }}

{{ 'game.try_word'|trans }}

{% endif %}
{{ render(controller('AppBundle:Testimonials:index')) }}
{% endblock %}