Files
talk/src/core/server/app/views/client.html
T
KiwiandGitHub 6da97c57d7 [CORL-314] Rename to Coral (#2318)
* chore: rename talk to coral

* fix: lint and unit tests

* fix: snapshot
2019-05-22 21:32:24 +02:00

23 lines
956 B
HTML

{% import "macros.html" as macros %} {% extends "templates/base.html" %} {%
block title %}Coral{% endblock %} {% block meta %}
<script type="application/javascript" id="config">
{
{
staticURI | dump | safe;
}
}
</script>
{% endblock %} {# Include all the styles from the entrypoint #} {% if
entrypoint.css or enableCustomCSS %} {% block css %} {% if entrypoint.css %} {%
for asset in entrypoint.css %}
{{ macros.css(asset.src, asset.integrity, staticURI) }}
{% endfor %} {% endif %} {% if enableCustomCSS %} {# Custom CSS is included
after the CSS block so that its overrides will apply #} {% include
"partials/customCSS.html" %} {% endif %} {% endblock %} {% endif %} {% block
html %}
<div id="app"></div>
{% endblock %} {# Include all the scripts from the entrypoint #} {% if
entrypoint.js %} {% block js %} {% for asset in entrypoint.js %}
{{ macros.js(asset.src, asset.integrity, staticURI) }}
{% endfor %} {% endblock %} {% endif %}