{% extends 'base.html.twig' %} {% block title %}Kanji Index{% endblock %} {% block body %}

{{ block('title') }}

{% for char in characters %}
{% if char.jiten_href != null %} {{- char.str -}} {% else %} {{- char.str -}} {% endif %}
{% if not char.lists.unicode %} {{ char.codepoint }} {% else %} {{ char.codepoint }} {% endif %}
{% endfor %}
{% endblock %}