{% load static i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}
Alphabet Learning
{% endblock title %}
{% block extra_css %}
{% endblock extra_css %}
{% block css %}
{# #}
{# #}
{% endblock css %}
{# Placed at the top of the document so pages load faster with defer #}
{% block javascript %}
{# #}
{% endblock javascript %}
{% block body %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% block main %}
{% block content %}
{% endblock content %}
{% endblock main %}
{% endblock body %}
{% block modal %}
{% endblock modal %}
{% block inline_javascript %}
{% comment %}
Script tags with only code, no src (defer by default). To run
with a "defer" so that you run inline code:
{% endcomment %}
{% endblock inline_javascript %}