{% load static i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}Image markuper{% endblock title %}
{% block css %}
{% endblock %}
{# Placed at the top of the document so pages load faster with defer #}
{% block javascript %}
{% endblock javascript %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% block content %}
Use this document as a way to quick start any new project.
{% endblock content %}
{% 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 %}