{% import "macros.html" as macros %} {% extends "templates/base.html" %} {% block title %}Coral AMP{% endblock %} {% set id = "coral" %} {% block css %} {# Reset the styles so the div can be inserted without margin #} {% endblock %} {% block meta %} {% if entrypoint.js %} {% for asset in entrypoint.js %} {{ macros.preload(asset.src, "script", prefix = staticURI) }} {% endfor %} {% endif %} {% endblock %} {% block body %} {# The Stream Embed will be rendered here. #}
{% if entrypoint.js %} {% for asset in entrypoint.js %} {{ macros.js(asset.src, asset.integrity, staticURI) }} {% endfor %} {% endif %} {% endblock %}