{% 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 char.lists.unicode is not defined %} {{ char.codepoint }} {% else %} {{ char.codepoint }} {% endif %}
{% endfor %}
{% endblock %}