{% extends "base.html.twig" %} {% import "macros.html.twig" as macros %} {% block head %} {% endblock %} {% block title %}{{ parent() }} — {{ post.meta.title }}{% endblock %} {% block body %}

{{ post.meta.title }}

{{ macros.meta(post) }}
{{ post_body|raw }}
{% if post.meta.games %} {% set games = post.meta.games|filter(g => games[g])|map(g => games[g]) %} {% if games|length > 0 %}

games

{% for game in games %}

{{ game.meta.title }}

{{ macros.embed(game) }}
{% endfor %} {% endif %} {% endif %} {% endblock %}