clojurecup2015-mailhead/resources/templates/parser-error.html

17 lines
439 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="span12">
{% if mailheader %}
<h1>Can't parse the given e-mail header</h1>
<p>Want to try some examples instead (choose from the menu above)?</p>
<pre>{{ mailheader }}</pre>
{% else %}
<h1>Sorry, no data to analyze given.</h1>
<p>Please insert a header into the form and try again.</p>
{% endif %}
</div>
</div>
{% endblock %}