{% load sekizai_tags %}
{% if fragment.fragment_type == 'css' %}
{% addtoblock "css" %}
{% if fragment.file %}
{% endif %}
{% if fragment.direct_url %}
{% endif %}
{% if fragment.inline_code %}
{% autoescape off %}
{% endautoescape %}
{% endif %}
{% endaddtoblock %}
{% endif %}
{% if fragment.fragment_type == 'js' %}
{% addtoblock "css" %}
{% if fragment.file %}
{% endif %}
{% if fragment.direct_url %}
{% endif %}
{% if fragment.inline_code %}
{% autoescape off %}
{% endautoescape %}
{% endif %}
{% endaddtoblock %}
{% endif %}
{% if fragment.fragment_type == 'html' %}
{% autoescape off %}
{{ fragment.inline_code }}
{% endautoescape %}
{% endif %}