zulip/templates/zerver/handlebars_compilation_failed.html
K.Kanakhin 23706a3c9e Add server error response for failed handlebars template compilation.
- Add stamp file creation for the failed templates compilation.
- Add error response to `home` route if stamp file exists. It appears
  just for the development environment.
- Add jinja2 template for failed handlebars templates compilation error.

Fixes #3650.
2017-02-28 09:44:08 -08:00

22 lines
565 B
HTML

{% extends "zerver/portico.html" %}
{% block customhead %}
{{ super() }}
<meta http-equiv="refresh" content="60;URL='/'">
{% endblock %}
{% block portico_content %}
<br/>
<p class="lead">Error compiling handlebars templates.</p>
<p>
Your development environment has some changes to the the
handlebars templates (<code>static/templates/</code>) that cause
them to not compile. Error details are printed in
the <code>run-dev.py</code> console; this message will go away as
soon as the handlebars templates compile again.
</p>
{% endblock %}