{% load staticfiles %}
{# Load assets as external files, to cache independently of markup. #}
{% comment %}
FAQ: IF a script or style is better cached with markup, THEN:
- Such a style belongs inline before relevant markup, not via this block
- Such a script belongs inline after relevant markup, not via this block
{% endcomment %}
{# NOTE: Fonts may be loaded early via `assets_font` #}
{% with settings.FAVICON as favicon %}
{% endwith %}
{# Do NOT directly load project-specific assets here; see `/taccsite_custom` #}
{# Example #}
{% comment %}
{% block assets_custom %}
{{ block.super }}
{# Example: Custom Site Assets. #}
{# Example: Custom Template-Specific Assets. #}
{# Example: Page-Specific Assets. #}
{# WARNING: Undesired use case. Create re-usable code instead. #}
{# SEE: https://confluence.tacc.utexas.edu/x/54AZCg #}
{% endblock assets_custom %}
{% endcomment %}